diff --git a/.gitignore b/.gitignore index 5ec04b6..e0ff16b 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,5 @@ zeppelin.exe /world_old server.properties /q -data.qfg \ No newline at end of file +data.qfg +/blockstates \ No newline at end of file diff --git a/main.go b/main.go index ad3882f..d98e962 100644 --- a/main.go +++ b/main.go @@ -1,9 +1,11 @@ package main import ( + "math/rand" "os" "runtime" "runtime/pprof" + "strconv" "time" "github.com/zeppelinmc/zeppelin/core_commands" @@ -19,16 +21,33 @@ var timeStart = time.Now() func main() { log.Infolnf("Zeppelin 1.21 Minecraft server with %s on platform %s-%s", runtime.Version(), runtime.GOOS, runtime.GOARCH) - if util.HasArgument("--cpuprof") { f, _ := os.Create("zeppelin-cpu-profile") pprof.StartCPUProfile(f) log.Infoln("Started CPU profiler (writing to zeppelin-cpu-profile)") + + defer func() { + log.Infoln("Stopped CPU profiler") + pprof.StopCPUProfile() + f.Close() + }() + } + + if util.HasArgument("--memprof") { + defer func() { + log.InfolnClean("Writing memory profile to zeppelin-mem-profile") + f, _ := os.Create("zeppelin-mem-profile") + pprof.Lookup("allocs").WriteTo(f, 0) + f.Close() + }() } cfg := loadConfig() + if cfg.LevelSeed == "" { + cfg.LevelSeed = strconv.FormatInt(rand.Int63(), 10) + } - w, err := world.NewWorld(cfg.LevelName) + w, err := world.NewWorld(cfg) if err != nil { log.Errorlnf("Error preparing level: %v", w) return @@ -58,15 +77,4 @@ func main() { go notRawTerminal(srv) } srv.Start(timeStart) - - if util.HasArgument("--cpuprof") { - log.Infoln("Stopped CPU profiler") - pprof.StopCPUProfile() - } - if util.HasArgument("--memprof") { - log.InfolnClean("Writing memory profile to zeppelin-mem-profile") - f, _ := os.Create("zeppelin-mem-profile") - pprof.Lookup("allocs").WriteTo(f, 0) - f.Close() - } } diff --git a/net/config.go b/net/config.go index d943cb6..606d91a 100644 --- a/net/config.go +++ b/net/config.go @@ -39,7 +39,9 @@ func (c Config) New() (*Listener, error) { return true, nil }, } - lis.privKey, err = rsa.GenerateKey(rand.Reader, 1024) + if c.Encrypt { + lis.privKey, err = rsa.GenerateKey(rand.Reader, 1024) + } go lis.listen() diff --git a/net/conn.go b/net/conn.go index b00fe84..84a883b 100644 --- a/net/conn.go +++ b/net/conn.go @@ -13,6 +13,7 @@ import ( "github.com/zeppelinmc/zeppelin/net/cfb8" "github.com/zeppelinmc/zeppelin/net/io" "github.com/zeppelinmc/zeppelin/net/io/compress" + "github.com/zeppelinmc/zeppelin/net/io/util" "github.com/zeppelinmc/zeppelin/net/packet" "github.com/zeppelinmc/zeppelin/net/packet/handshake" "github.com/zeppelinmc/zeppelin/net/packet/login" @@ -47,6 +48,7 @@ type Conn struct { usesForge bool read_mu sync.Mutex + write_mu sync.Mutex } func (conn *Conn) UsesForge() bool { @@ -85,6 +87,9 @@ var pkpool = sync.Pool{ } func (conn *Conn) WritePacket(pk packet.Packet) error { + conn.write_mu.Lock() + defer conn.write_mu.Unlock() + var packetBuf = pkpool.Get().(*bytes.Buffer) packetBuf.Reset() defer pkpool.Put(packetBuf) @@ -244,13 +249,18 @@ func (conn *Conn) ReadPacket() (packet.Packet, error) { rd = io.NewReader(bytes.NewReader(packet), int(length)) } } else { //packet is compressed - /*length = dataLength + length = dataLength compressedLength := packetLength - int32(dataLengthSize) var ilength = int(length) - uncompressedPacket, err := compress.DecompressZlib(conn, int(compressedLength), &ilength) + + var packetBuf = pkpool.Get().(*bytes.Buffer) + packetBuf.Reset() + packetBuf.ReadFrom(util.NewReaderMaxxer(conn, int(compressedLength))) + defer pkpool.Put(packetBuf) + + uncompressedPacket, err := compress.DecompressZlib(packetBuf.Bytes(), &ilength) if err != nil { - log.Println(err) return nil, err } @@ -262,7 +272,7 @@ func (conn *Conn) ReadPacket() (packet.Packet, error) { uncompressedPacket = data length = int32(len(data)) - rd = io.NewReader(bytes.NewReader(uncompressedPacket), int(length))*/ + rd = io.NewReader(bytes.NewReader(uncompressedPacket), int(length)) } } diff --git a/net/io/compress/compress.go b/net/io/compress/compress.go index 187f875..a89335e 100644 --- a/net/io/compress/compress.go +++ b/net/io/compress/compress.go @@ -1,6 +1,7 @@ package compress import ( + "bytes" "sync" "github.com/4kills/go-libdeflate/v2" @@ -21,5 +22,5 @@ var compressors = sync.Pool{ } var bufs = sync.Pool{ - New: func() any { return make([]byte, 0) }, + New: func() any { return new(bytes.Buffer) }, } diff --git a/net/io/compress/lz4.go b/net/io/compress/lz4.go index 610740a..d584a11 100644 --- a/net/io/compress/lz4.go +++ b/net/io/compress/lz4.go @@ -1,23 +1,20 @@ package compress import ( - "bytes" "encoding/binary" "fmt" - "io" "github.com/pierrec/lz4/v4" - "github.com/zeppelinmc/zeppelin/net/io/buffers" - "github.com/zeppelinmc/zeppelin/net/io/util" ) // Decompress an lz4-java block. The data returned is only safe to use until the next operation -func DecompressLZ4(data io.Reader) ([]byte, error) { - var header [21]byte - _, err := data.Read(header[:]) - if err != nil { - return nil, err +func DecompressLZ4(data []byte) ([]byte, error) { + if len(data) <= 21 { + return nil, fmt.Errorf("missing header") } + header := data[:21] + data = data[21:] + magicValue := string(header[:8]) if magicValue != magic { return nil, fmt.Errorf("invalid magic value") @@ -26,18 +23,7 @@ func DecompressLZ4(data io.Reader) ([]byte, error) { compressedLength := int(binary.LittleEndian.Uint32(header[9:13])) decompressedLength := binary.LittleEndian.Uint32(header[13:17]) - var compressedBuffer = buffers.Buffers.Get().(*bytes.Buffer) - defer buffers.Buffers.Put(compressedBuffer) - compressedBuffer.Reset() - if compressedBuffer.Len() < compressedLength { - compressedBuffer.Grow(compressedLength) - } - - if _, err := compressedBuffer.ReadFrom(util.NewReaderMaxxer(data, compressedLength)); err != nil { - return nil, err - } - - compressed := compressedBuffer.Bytes()[:compressedLength] + compressed := data[:compressedLength] token := header[8] compressionMethod := token & 0xf0 @@ -49,7 +35,7 @@ func DecompressLZ4(data io.Reader) ([]byte, error) { } defer bufs.Put(decompressed) - _, err = lz4.UncompressBlock(compressed, decompressed[:decompressedLength]) + _, err := lz4.UncompressBlock(compressed, decompressed[:decompressedLength]) return decompressed[:decompressedLength], err case methodUncompressed: diff --git a/net/io/compress/zlib.go b/net/io/compress/zlib.go index 5abe9fc..d8b5fba 100644 --- a/net/io/compress/zlib.go +++ b/net/io/compress/zlib.go @@ -1,6 +1,8 @@ package compress import ( + "bytes" + "github.com/4kills/go-libdeflate/v2" ) @@ -11,13 +13,15 @@ func DecompressZlib(compressed []byte, decompressedLength *int) ([]byte, error) defer decompressors.Put(dc) if decompressedLength != nil { - dst := bufs.Get().([]byte) - if len(dst) < int(*decompressedLength) { - dst = make([]byte, *decompressedLength) + dst := bufs.Get().(*bytes.Buffer) + if dst.Len() < int(*decompressedLength) { + dst.Grow(*decompressedLength) } defer bufs.Put(dst) - _, decompressedResult, err := dc.DecompressZlib(compressed, dst[:*decompressedLength]) + c := dst.Bytes()[:*decompressedLength] + + _, decompressedResult, err := dc.DecompressZlib(compressed, c) return decompressedResult, err } else { @@ -33,13 +37,15 @@ func CompressZlib(decompressedData []byte, compressedLength *int) (compressed [] defer compressors.Put(c) if compressedLength != nil { - dst := bufs.Get().([]byte) - if len(dst) < int(*compressedLength) { - dst = make([]byte, *compressedLength) + dst := bufs.Get().(*bytes.Buffer) + if dst.Len() < int(*compressedLength) { + dst.Grow(*compressedLength) } defer bufs.Put(dst) - _, compressedResult, err := c.CompressZlib(decompressedData, dst[:*compressedLength]) + dc := dst.Bytes()[:*compressedLength] + + _, compressedResult, err := c.CompressZlib(decompressedData, dc) return compressedResult, err } else { diff --git a/net/io/writer.go b/net/io/writer.go index a358ee8..0a4fb54 100644 --- a/net/io/writer.go +++ b/net/io/writer.go @@ -193,6 +193,17 @@ func (w Writer) TextComponent(comp text.TextComponent) error { return w.NBT(comp) } +func (w Writer) StringTextComponent(text string) error { + if err := w.Byte(8); err != nil { + return err + } + if err := w.Short(int16(len(text))); err != nil { + return err + } + + return w.String(text) +} + func (w Writer) NBT(data any) error { enc := nbt.NewEncoder(w.w) enc.WriteRootName(false) diff --git a/net/packet/configuration/registryData.go b/net/packet/configuration/registryData.go index fd7e03b..ce44be7 100644 --- a/net/packet/configuration/registryData.go +++ b/net/packet/configuration/registryData.go @@ -8,10 +8,10 @@ import ( "github.com/zeppelinmc/zeppelin/net/registry" ) -var RegistryPackets = make([]*RegistryData, 0, len(registry.RegistryMap)) +var RegistryPackets = make([]*RegistryData, 0, len(registry.Registries)) func init() { - for key, registry := range registry.RegistryMap { + for key, registry := range registry.Registries { RegistryPackets = append(RegistryPackets, &RegistryData{ RegistryId: key, Registry: registry, diff --git a/net/registry/embed.go b/net/registry/embed.go index 0cdcf9f..84f8574 100644 --- a/net/registry/embed.go +++ b/net/registry/embed.go @@ -1,11 +1,9 @@ package registry -// DO NOT TOUCH! - -var Registries = registries{BannerPattern: map[string]struct { +var Registries = map[string]interface{}{"minecraft:banner_pattern": map[string]struct { AssetId string "nbt:\"asset_id\"" TranslationKey string "nbt:\"translation_key\"" -}{"minecraft:base": {AssetId: "minecraft:base", TranslationKey: "block.minecraft.banner.base"}, "minecraft:border": {AssetId: "minecraft:border", TranslationKey: "block.minecraft.banner.border"}, "minecraft:bricks": {AssetId: "minecraft:bricks", TranslationKey: "block.minecraft.banner.bricks"}, "minecraft:circle": {AssetId: "minecraft:circle", TranslationKey: "block.minecraft.banner.circle"}, "minecraft:creeper": {AssetId: "minecraft:creeper", TranslationKey: "block.minecraft.banner.creeper"}, "minecraft:cross": {AssetId: "minecraft:cross", TranslationKey: "block.minecraft.banner.cross"}, "minecraft:curly_border": {AssetId: "minecraft:curly_border", TranslationKey: "block.minecraft.banner.curly_border"}, "minecraft:diagonal_left": {AssetId: "minecraft:diagonal_left", TranslationKey: "block.minecraft.banner.diagonal_left"}, "minecraft:diagonal_right": {AssetId: "minecraft:diagonal_right", TranslationKey: "block.minecraft.banner.diagonal_right"}, "minecraft:diagonal_up_left": {AssetId: "minecraft:diagonal_up_left", TranslationKey: "block.minecraft.banner.diagonal_up_left"}, "minecraft:diagonal_up_right": {AssetId: "minecraft:diagonal_up_right", TranslationKey: "block.minecraft.banner.diagonal_up_right"}, "minecraft:flow": {AssetId: "minecraft:flow", TranslationKey: "block.minecraft.banner.flow"}, "minecraft:flower": {AssetId: "minecraft:flower", TranslationKey: "block.minecraft.banner.flower"}, "minecraft:globe": {AssetId: "minecraft:globe", TranslationKey: "block.minecraft.banner.globe"}, "minecraft:gradient": {AssetId: "minecraft:gradient", TranslationKey: "block.minecraft.banner.gradient"}, "minecraft:gradient_up": {AssetId: "minecraft:gradient_up", TranslationKey: "block.minecraft.banner.gradient_up"}, "minecraft:guster": {AssetId: "minecraft:guster", TranslationKey: "block.minecraft.banner.guster"}, "minecraft:half_horizontal": {AssetId: "minecraft:half_horizontal", TranslationKey: "block.minecraft.banner.half_horizontal"}, "minecraft:half_horizontal_bottom": {AssetId: "minecraft:half_horizontal_bottom", TranslationKey: "block.minecraft.banner.half_horizontal_bottom"}, "minecraft:half_vertical": {AssetId: "minecraft:half_vertical", TranslationKey: "block.minecraft.banner.half_vertical"}, "minecraft:half_vertical_right": {AssetId: "minecraft:half_vertical_right", TranslationKey: "block.minecraft.banner.half_vertical_right"}, "minecraft:mojang": {AssetId: "minecraft:mojang", TranslationKey: "block.minecraft.banner.mojang"}, "minecraft:piglin": {AssetId: "minecraft:piglin", TranslationKey: "block.minecraft.banner.piglin"}, "minecraft:rhombus": {AssetId: "minecraft:rhombus", TranslationKey: "block.minecraft.banner.rhombus"}, "minecraft:skull": {AssetId: "minecraft:skull", TranslationKey: "block.minecraft.banner.skull"}, "minecraft:small_stripes": {AssetId: "minecraft:small_stripes", TranslationKey: "block.minecraft.banner.small_stripes"}, "minecraft:square_bottom_left": {AssetId: "minecraft:square_bottom_left", TranslationKey: "block.minecraft.banner.square_bottom_left"}, "minecraft:square_bottom_right": {AssetId: "minecraft:square_bottom_right", TranslationKey: "block.minecraft.banner.square_bottom_right"}, "minecraft:square_top_left": {AssetId: "minecraft:square_top_left", TranslationKey: "block.minecraft.banner.square_top_left"}, "minecraft:square_top_right": {AssetId: "minecraft:square_top_right", TranslationKey: "block.minecraft.banner.square_top_right"}, "minecraft:straight_cross": {AssetId: "minecraft:straight_cross", TranslationKey: "block.minecraft.banner.straight_cross"}, "minecraft:stripe_bottom": {AssetId: "minecraft:stripe_bottom", TranslationKey: "block.minecraft.banner.stripe_bottom"}, "minecraft:stripe_center": {AssetId: "minecraft:stripe_center", TranslationKey: "block.minecraft.banner.stripe_center"}, "minecraft:stripe_downleft": {AssetId: "minecraft:stripe_downleft", TranslationKey: "block.minecraft.banner.stripe_downleft"}, "minecraft:stripe_downright": {AssetId: "minecraft:stripe_downright", TranslationKey: "block.minecraft.banner.stripe_downright"}, "minecraft:stripe_left": {AssetId: "minecraft:stripe_left", TranslationKey: "block.minecraft.banner.stripe_left"}, "minecraft:stripe_middle": {AssetId: "minecraft:stripe_middle", TranslationKey: "block.minecraft.banner.stripe_middle"}, "minecraft:stripe_right": {AssetId: "minecraft:stripe_right", TranslationKey: "block.minecraft.banner.stripe_right"}, "minecraft:stripe_top": {AssetId: "minecraft:stripe_top", TranslationKey: "block.minecraft.banner.stripe_top"}, "minecraft:triangle_bottom": {AssetId: "minecraft:triangle_bottom", TranslationKey: "block.minecraft.banner.triangle_bottom"}, "minecraft:triangle_top": {AssetId: "minecraft:triangle_top", TranslationKey: "block.minecraft.banner.triangle_top"}, "minecraft:triangles_bottom": {AssetId: "minecraft:triangles_bottom", TranslationKey: "block.minecraft.banner.triangles_bottom"}, "minecraft:triangles_top": {AssetId: "minecraft:triangles_top", TranslationKey: "block.minecraft.banner.triangles_top"}}, ChatType: map[string]ChatType{"minecraft:chat": {Chat: struct { +}{"minecraft:base": {AssetId: "minecraft:base", TranslationKey: "block.minecraft.banner.base"}, "minecraft:border": {AssetId: "minecraft:border", TranslationKey: "block.minecraft.banner.border"}, "minecraft:bricks": {AssetId: "minecraft:bricks", TranslationKey: "block.minecraft.banner.bricks"}, "minecraft:circle": {AssetId: "minecraft:circle", TranslationKey: "block.minecraft.banner.circle"}, "minecraft:creeper": {AssetId: "minecraft:creeper", TranslationKey: "block.minecraft.banner.creeper"}, "minecraft:cross": {AssetId: "minecraft:cross", TranslationKey: "block.minecraft.banner.cross"}, "minecraft:curly_border": {AssetId: "minecraft:curly_border", TranslationKey: "block.minecraft.banner.curly_border"}, "minecraft:diagonal_left": {AssetId: "minecraft:diagonal_left", TranslationKey: "block.minecraft.banner.diagonal_left"}, "minecraft:diagonal_right": {AssetId: "minecraft:diagonal_right", TranslationKey: "block.minecraft.banner.diagonal_right"}, "minecraft:diagonal_up_left": {AssetId: "minecraft:diagonal_up_left", TranslationKey: "block.minecraft.banner.diagonal_up_left"}, "minecraft:diagonal_up_right": {AssetId: "minecraft:diagonal_up_right", TranslationKey: "block.minecraft.banner.diagonal_up_right"}, "minecraft:flow": {AssetId: "minecraft:flow", TranslationKey: "block.minecraft.banner.flow"}, "minecraft:flower": {AssetId: "minecraft:flower", TranslationKey: "block.minecraft.banner.flower"}, "minecraft:globe": {AssetId: "minecraft:globe", TranslationKey: "block.minecraft.banner.globe"}, "minecraft:gradient": {AssetId: "minecraft:gradient", TranslationKey: "block.minecraft.banner.gradient"}, "minecraft:gradient_up": {AssetId: "minecraft:gradient_up", TranslationKey: "block.minecraft.banner.gradient_up"}, "minecraft:guster": {AssetId: "minecraft:guster", TranslationKey: "block.minecraft.banner.guster"}, "minecraft:half_horizontal": {AssetId: "minecraft:half_horizontal", TranslationKey: "block.minecraft.banner.half_horizontal"}, "minecraft:half_horizontal_bottom": {AssetId: "minecraft:half_horizontal_bottom", TranslationKey: "block.minecraft.banner.half_horizontal_bottom"}, "minecraft:half_vertical": {AssetId: "minecraft:half_vertical", TranslationKey: "block.minecraft.banner.half_vertical"}, "minecraft:half_vertical_right": {AssetId: "minecraft:half_vertical_right", TranslationKey: "block.minecraft.banner.half_vertical_right"}, "minecraft:mojang": {AssetId: "minecraft:mojang", TranslationKey: "block.minecraft.banner.mojang"}, "minecraft:piglin": {AssetId: "minecraft:piglin", TranslationKey: "block.minecraft.banner.piglin"}, "minecraft:rhombus": {AssetId: "minecraft:rhombus", TranslationKey: "block.minecraft.banner.rhombus"}, "minecraft:skull": {AssetId: "minecraft:skull", TranslationKey: "block.minecraft.banner.skull"}, "minecraft:small_stripes": {AssetId: "minecraft:small_stripes", TranslationKey: "block.minecraft.banner.small_stripes"}, "minecraft:square_bottom_left": {AssetId: "minecraft:square_bottom_left", TranslationKey: "block.minecraft.banner.square_bottom_left"}, "minecraft:square_bottom_right": {AssetId: "minecraft:square_bottom_right", TranslationKey: "block.minecraft.banner.square_bottom_right"}, "minecraft:square_top_left": {AssetId: "minecraft:square_top_left", TranslationKey: "block.minecraft.banner.square_top_left"}, "minecraft:square_top_right": {AssetId: "minecraft:square_top_right", TranslationKey: "block.minecraft.banner.square_top_right"}, "minecraft:straight_cross": {AssetId: "minecraft:straight_cross", TranslationKey: "block.minecraft.banner.straight_cross"}, "minecraft:stripe_bottom": {AssetId: "minecraft:stripe_bottom", TranslationKey: "block.minecraft.banner.stripe_bottom"}, "minecraft:stripe_center": {AssetId: "minecraft:stripe_center", TranslationKey: "block.minecraft.banner.stripe_center"}, "minecraft:stripe_downleft": {AssetId: "minecraft:stripe_downleft", TranslationKey: "block.minecraft.banner.stripe_downleft"}, "minecraft:stripe_downright": {AssetId: "minecraft:stripe_downright", TranslationKey: "block.minecraft.banner.stripe_downright"}, "minecraft:stripe_left": {AssetId: "minecraft:stripe_left", TranslationKey: "block.minecraft.banner.stripe_left"}, "minecraft:stripe_middle": {AssetId: "minecraft:stripe_middle", TranslationKey: "block.minecraft.banner.stripe_middle"}, "minecraft:stripe_right": {AssetId: "minecraft:stripe_right", TranslationKey: "block.minecraft.banner.stripe_right"}, "minecraft:stripe_top": {AssetId: "minecraft:stripe_top", TranslationKey: "block.minecraft.banner.stripe_top"}, "minecraft:triangle_bottom": {AssetId: "minecraft:triangle_bottom", TranslationKey: "block.minecraft.banner.triangle_bottom"}, "minecraft:triangle_top": {AssetId: "minecraft:triangle_top", TranslationKey: "block.minecraft.banner.triangle_top"}, "minecraft:triangles_bottom": {AssetId: "minecraft:triangles_bottom", TranslationKey: "block.minecraft.banner.triangles_bottom"}, "minecraft:triangles_top": {AssetId: "minecraft:triangles_top", TranslationKey: "block.minecraft.banner.triangles_top"}}, "minecraft:chat_type": map[string]ChatType{"minecraft:chat": {Chat: struct { Parameters []string "nbt:\"parameters\"" TranslationKey string "nbt:\"translation_key\"" Style struct { @@ -96,13 +94,13 @@ var Registries = registries{BannerPattern: map[string]struct { }{Color: "", Italic: false}}, Narration: struct { Parameters []string "nbt:\"parameters\"" TranslationKey string "nbt:\"translation_key\"" -}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.text.narrate"}}}, DamageType: map[string]struct { +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.text.narrate"}}}, "minecraft:damage_type": map[string]struct { Exhaustion float32 "nbt:\"exhaustion\"" MessageID string "nbt:\"message_id\"" Scaling string "nbt:\"scaling\"" DeathMessageType string "nbt:\"death_message_type,omitempty\"" Effects string "nbt:\"effects,omitempty\"" -}{"minecraft:arrow": {Exhaustion: 0.1, MessageID: "arrow", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:bad_respawn_point": {Exhaustion: 0.1, MessageID: "badRespawnPoint", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:cactus": {Exhaustion: 0.1, MessageID: "cactus", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:campfire": {Exhaustion: 0.1, MessageID: "inFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:cramming": {Exhaustion: 0, MessageID: "cramming", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:dragon_breath": {Exhaustion: 0, MessageID: "dragonBreath", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:drown": {Exhaustion: 0, MessageID: "drown", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:dry_out": {Exhaustion: 0.1, MessageID: "dryout", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:explosion": {Exhaustion: 0.1, MessageID: "explosion", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:fall": {Exhaustion: 0, MessageID: "fall", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:falling_anvil": {Exhaustion: 0.1, MessageID: "anvil", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:falling_block": {Exhaustion: 0.1, MessageID: "fallingBlock", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:falling_stalactite": {Exhaustion: 0.1, MessageID: "fallingStalactite", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:fireball": {Exhaustion: 0.1, MessageID: "fireball", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:fireworks": {Exhaustion: 0.1, MessageID: "fireworks", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:fly_into_wall": {Exhaustion: 0, MessageID: "flyIntoWall", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:freeze": {Exhaustion: 0, MessageID: "freeze", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:generic": {Exhaustion: 0, MessageID: "generic", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:generic_kill": {Exhaustion: 0, MessageID: "genericKill", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:hot_floor": {Exhaustion: 0.1, MessageID: "hotFloor", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:in_fire": {Exhaustion: 0.1, MessageID: "inFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:in_wall": {Exhaustion: 0, MessageID: "inWall", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:indirect_magic": {Exhaustion: 0, MessageID: "indirectMagic", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:lava": {Exhaustion: 0.1, MessageID: "lava", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:lightning_bolt": {Exhaustion: 0.1, MessageID: "lightningBolt", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:magic": {Exhaustion: 0, MessageID: "magic", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:mob_attack": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:mob_attack_no_aggro": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:mob_projectile": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:on_fire": {Exhaustion: 0, MessageID: "onFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:out_of_world": {Exhaustion: 0, MessageID: "outOfWorld", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:outside_border": {Exhaustion: 0, MessageID: "outsideBorder", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:player_attack": {Exhaustion: 0.1, MessageID: "player", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:player_explosion": {Exhaustion: 0.1, MessageID: "explosion.player", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:sonic_boom": {Exhaustion: 0, MessageID: "sonic_boom", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:spit": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:stalagmite": {Exhaustion: 0, MessageID: "stalagmite", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:starve": {Exhaustion: 0, MessageID: "starve", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:sting": {Exhaustion: 0.1, MessageID: "sting", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:sweet_berry_bush": {Exhaustion: 0.1, MessageID: "sweetBerryBush", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:thorns": {Exhaustion: 0.1, MessageID: "thorns", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:thrown": {Exhaustion: 0.1, MessageID: "thrown", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:trident": {Exhaustion: 0.1, MessageID: "trident", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:unattributed_fireball": {Exhaustion: 0.1, MessageID: "onFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:wind_charge": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:wither": {Exhaustion: 0, MessageID: "wither", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:wither_skull": {Exhaustion: 0.1, MessageID: "witherSkull", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}}, DimensionType: struct { +}{"minecraft:arrow": {Exhaustion: 0.1, MessageID: "arrow", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:bad_respawn_point": {Exhaustion: 0.1, MessageID: "badRespawnPoint", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:cactus": {Exhaustion: 0.1, MessageID: "cactus", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:campfire": {Exhaustion: 0.1, MessageID: "inFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:cramming": {Exhaustion: 0, MessageID: "cramming", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:dragon_breath": {Exhaustion: 0, MessageID: "dragonBreath", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:drown": {Exhaustion: 0, MessageID: "drown", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:dry_out": {Exhaustion: 0.1, MessageID: "dryout", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:explosion": {Exhaustion: 0.1, MessageID: "explosion", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:fall": {Exhaustion: 0, MessageID: "fall", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:falling_anvil": {Exhaustion: 0.1, MessageID: "anvil", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:falling_block": {Exhaustion: 0.1, MessageID: "fallingBlock", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:falling_stalactite": {Exhaustion: 0.1, MessageID: "fallingStalactite", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:fireball": {Exhaustion: 0.1, MessageID: "fireball", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:fireworks": {Exhaustion: 0.1, MessageID: "fireworks", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:fly_into_wall": {Exhaustion: 0, MessageID: "flyIntoWall", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:freeze": {Exhaustion: 0, MessageID: "freeze", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:generic": {Exhaustion: 0, MessageID: "generic", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:generic_kill": {Exhaustion: 0, MessageID: "genericKill", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:hot_floor": {Exhaustion: 0.1, MessageID: "hotFloor", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:in_fire": {Exhaustion: 0.1, MessageID: "inFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:in_wall": {Exhaustion: 0, MessageID: "inWall", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:indirect_magic": {Exhaustion: 0, MessageID: "indirectMagic", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:lava": {Exhaustion: 0.1, MessageID: "lava", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:lightning_bolt": {Exhaustion: 0.1, MessageID: "lightningBolt", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:magic": {Exhaustion: 0, MessageID: "magic", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:mob_attack": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:mob_attack_no_aggro": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:mob_projectile": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:on_fire": {Exhaustion: 0, MessageID: "onFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:out_of_world": {Exhaustion: 0, MessageID: "outOfWorld", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:outside_border": {Exhaustion: 0, MessageID: "outsideBorder", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:player_attack": {Exhaustion: 0.1, MessageID: "player", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:player_explosion": {Exhaustion: 0.1, MessageID: "explosion.player", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:sonic_boom": {Exhaustion: 0, MessageID: "sonic_boom", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:spit": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:stalagmite": {Exhaustion: 0, MessageID: "stalagmite", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:starve": {Exhaustion: 0, MessageID: "starve", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:sting": {Exhaustion: 0.1, MessageID: "sting", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:sweet_berry_bush": {Exhaustion: 0.1, MessageID: "sweetBerryBush", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:thorns": {Exhaustion: 0.1, MessageID: "thorns", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:thrown": {Exhaustion: 0.1, MessageID: "thrown", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:trident": {Exhaustion: 0.1, MessageID: "trident", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:unattributed_fireball": {Exhaustion: 0.1, MessageID: "onFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:wind_charge": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:wither": {Exhaustion: 0, MessageID: "wither", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:wither_skull": {Exhaustion: 0.1, MessageID: "witherSkull", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}}, "minecraft:dimension_type": struct { Overworld Dimension "nbt:\"minecraft:overworld\"" OverworldCaves Dimension "nbt:\"minecraft:overworld_caves\"" TheEnd Dimension "nbt:\"minecraft:the_end\"" @@ -119,7 +117,250 @@ var Registries = registries{BannerPattern: map[string]struct { MaxInclusive int32 "nbt:\"max_inclusive\"" MinInclusive int32 "nbt:\"min_inclusive\"" Type string "nbt:\"type\"" -}{MaxInclusive: 7, MinInclusive: 0, Type: "minecraft:uniform"}}, TheNether: Dimension1{FixedTime: 18000, AmbientLight: 0.1, BedWorks: false, CoordinateScale: 8, Effects: "minecraft:the_nether", HasCeiling: true, HasRaids: false, HasSkylight: false, Height: 256, Infiniburn: "#minecraft:infiniburn_nether", LogicalHeight: 128, MinY: 0, MonsterSpawnBlockLightLimit: 15, Natural: false, Ultrawarm: true, PiglinSafe: true, RespawnAnchorWorks: true, MonsterSpawnLightLevel: 7}}, JukeboxSong: map[string]struct { +}{MaxInclusive: 7, MinInclusive: 0, Type: "minecraft:uniform"}}, TheNether: Dimension1{FixedTime: 18000, AmbientLight: 0.1, BedWorks: false, CoordinateScale: 8, Effects: "minecraft:the_nether", HasCeiling: true, HasRaids: false, HasSkylight: false, Height: 256, Infiniburn: "#minecraft:infiniburn_nether", LogicalHeight: 128, MinY: 0, MonsterSpawnBlockLightLimit: 15, Natural: false, Ultrawarm: true, PiglinSafe: true, RespawnAnchorWorks: true, MonsterSpawnLightLevel: 7}}, "minecraft:enchantment": map[string]struct { + AnvilCost int32 "nbt:\"anvil_cost\"" + Description struct { + Translate string "nbt:\"translate\"" + } "nbt:\"description\"" + Effects struct { + SmashDamagePerFallenBlock []struct { + Effect struct { + Type string "nbt:\"type\"" + Value struct { + Base float32 "nbt:\"base\"" + PerLevelAboveFirst float32 "nbt:\"per_level_above_first\"" + Type string "nbt:\"type\"" + } "nbt:\"value\"" + } "nbt:\"effect\"" + } "nbt:\"minecraft:smash_damage_per_fallen_block\"" + PreventArmorChange struct{} "nbt:\"minecraft:prevent_armor_change\"" + HitBlock []struct { + Effect struct { + Effects []struct { + Type string "nbt:\"type\"" + Entity string "nbt:\"entity\"" + Pitch float32 "nbt:\"pitch\"" + Sound string "nbt:\"sound\"" + Volume float32 "nbt:\"volume\"" + } "nbt:\"effects\"" + Type string "nbt:\"type\"" + } "nbt:\"effect\"" + Requirements struct { + Condition string "nbt:\"condition\"" + Terms []struct { + Block string "nbt:\"block\"" + Condition string "nbt:\"condition\"" + Thundering bool "nbt:\"thundering\"" + Entity string "nbt:\"entity\"" + Predicate struct { + Type string "nbt:\"type\"" + CanSeeSky bool "nbt:\"can_see_sky\"" + } "nbt:\"predicate\"" + } "nbt:\"terms\"" + } "nbt:\"requirements\"" + } "nbt:\"minecraft:hit_block\"" + ArmorEffectiveness []struct { + Effect struct { + Type string "nbt:\"type\"" + Value struct { + Base float32 "nbt:\"base\"" + PerLevelAboveFirst float32 "nbt:\"per_level_above_first\"" + Type string "nbt:\"type\"" + } "nbt:\"value\"" + } "nbt:\"effect\"" + } "nbt:\"minecraft:armor_effectiveness\"" + Attributes []struct { + Amount struct { + Added float32 "nbt:\"added\"" + Base float32 "nbt:\"base\"" + PerLevelAboveFirst float32 "nbt:\"per_level_above_first\"" + Type string "nbt:\"type\"" + } "nbt:\"amount\"" + Atrribute string "nbt:\"attribute\"" + Id string "nbt:\"id\"" + Operation string "nbt:\"operation\"" + } "nbt:\"minecraft:attributes\"" + AmmoUse []struct { + Effect struct { + Type string "nbt:\"type\"" + Value float32 "nbt:\"value\"" + } "nbt:\"effect\"" + Requirements struct { + Condition string "nbt:\"condition\"" + Predicate struct { + Items string "nbt:\"items\"" + } "nbt:\"predicate\"" + } "nbt:\"requirements\"" + } "nbt:\"minecraft:ammo_use\"" + ProjectileSpawned []struct { + Effect struct { + Duration float32 "nbt:\"duration\"" + Type string "nbt:\"type\"" + } "nbt:\"effect\"" + } "nbt:\"minecraft:projectile_spawned\"" + LocationChanged []struct { + Effect struct { + BlockState struct { + State struct { + Name string + Properties map[string]interface{} + } "nbt:\"state\"" + Type string "nbt:\"type\"" + } "nbt:\"block_state\"" + Height float32 "nbt:\"height\"" + Offset []int32 "nbt:\"offset\"" + Predicate struct { + Predicates []struct { + Offset []int32 "nbt:\"offset\"" + Tag string "nbt:\"tag\"" + Type string "nbt:\"type\"" + Blocks string "nbt:\"blocks\"" + Fluids string "nbt:\"fluids\"" + } "nbt:\"predicates\"" + Radius struct { + Max float32 "nbt:\"max\"" + Min float32 "nbt:\"min\"" + Type string "nbt:\"type\"" + Value struct { + Base float32 "nbt:\"base\"" + PerLevelAboveFirst float32 "nbt:\"per_level_above_first\"" + Type string "nbt:\"type\"" + } "nbt:\"value\"" + } "nbt:\"radius\"" + Type string "nbt:\"type\"" + } "nbt:\"predicate\"" + TriggerGameEvent string "nbt:\"trigger_game_event\"" + Type string "nbt:\"type\"" + } "nbt:\"effect\"" + Requirements struct { + Condition string "nbt:\"condition\"" + Entity string "nbt:\"entity\"" + Predicate struct { + Flags struct { + IsOnGround bool "nbt:\"is_on_ground\"" + } "nbt:\"flags\"" + } "nbt:\"predicate\"" + } "nbt:\"requirements\"" + } "nbt:\"minecraft:location_changed\"" + DamageImmunity []struct { + Effect struct{} + Requirements struct { + Condition string "nbt:\"condition\"" + Predicate struct { + Tags []struct { + Expected bool "nbt:\"expected\"" + Id string "nbt:\"id\"" + } "nbt:\"tags\"" + } "nbt:\"predicate\"" + } "nbt:\"requirements\"" + } "nbt:\"minecraft:damage_immunity\"" + DamageProtection []struct { + Effect struct { + Type string "nbt:\"type\"" + Value struct { + Base float32 "nbt:\"base\"" + PerLevelAboveFirst float32 "nbt:\"per_level_above_first\"" + Type string "nbt:\"type\"" + } "nbt:\"value\"" + } "nbt:\"effect\"" + Requirements struct { + Condition string "nbt:\"condition\"" + Predicate struct { + Tags []struct { + Expected bool "nbt:\"expected\"" + Id string "nbt:\"id\"" + } "nbt:\"tags\"" + } "nbt:\"predicate\"" + Terms []struct { + Condition string "nbt:\"condition\"" + Predicate struct { + Tags []struct { + Expected bool "nbt:\"expected\"" + Id string "nbt:\"id\"" + } "nbt:\"tags\"" + } "nbt:\"predicate\"" + } "nbt:\"terms\"" + } "nbt:\"requirements\"" + } "nbt:\"minecraft:damage_protection\"" + Damage []struct { + Effect struct { + Type string "nbt:\"type\"" + Value struct { + Base float32 "nbt:\"base\"" + PerLevelAboveFirst float32 "nbt:\"per_level_above_first\"" + Type string "nbt:\"type\"" + } "nbt:\"value\"" + } "nbt:\"effect\"" + Requirements struct { + Condition string "nbt:\"condition\"" + Entity string "nbt:\"entity\"" + Predicate struct { + Type string "nbt:\"type\"" + } "nbt:\"predicate\"" + } "nbt:\"requirements\"" + } "nbt:\"minecraft:damage\"" + PostAttack []struct { + Affected string "nbt:\"affected\"" + Effect struct { + MaxAmplifier float32 "nbt:\"max_amplifier\"" + MaxDuration struct { + Base float32 "nbt:\"base\"" + PerLevelAboveFirst float32 "nbt:\"per_level_above_first\"" + Type string "nbt:\"type\"" + } "nbt:\"max_duration\"" + Duration struct { + Base float32 "nbt:\"base\"" + PerLevelAboveFirst float32 "nbt:\"per_level_above_first\"" + Type string "nbt:\"type\"" + } "nbt:\"duration\"" + MinAmplifier float32 "nbt:\"min_amplifier\"" + MinDuration float32 "nbt:\"min_duration\"" + ToApply string "nbt:\"to_apply\"" + Type string "nbt:\"type\"" + Effects []struct { + Type string "nbt:\"type\"" + Entity string "nbt:\"entity\"" + Pitch float32 "nbt:\"pitch\"" + Sound string "nbt:\"sound\"" + Volume float32 "nbt:\"volume\"" + } "nbt:\"effects\"" + } "nbt:\"effect\"" + Enchanted string "nbt:\"enchanted\"" + Requirements struct { + Condition string "nbt:\"condition\"" + Predicate struct { + IsDirect bool "nbt:\"is_direct\"" + } "nbt:\"predicate\"" + Terms []struct { + Condition string "nbt:\"condition\"" + Thundering bool "nbt:\"thundering\"" + Entity string "nbt:\"entity\"" + Predicate struct { + IsDirect bool "nbt:\"is_direct\"" + Type string "nbt:\"type\"" + Location struct { + CanSeeSky bool "nbt:\"can_see_sky\"" + } "nbt:\"location\"" + } "nbt:\"predicate\"" + } "nbt:\"terms\"" + } "nbt:\"requirements\"" + } "nbt:\"minecraft:post_attack\"" + } "nbt:\"effects\"" + MaxCost struct { + Base int32 "nbt:\"base\"" + PerLevelAboveFirst int32 "nbt:\"per_level_above_first\"" + } "nbt:\"max_cost\"" + MinCost struct { + Base int32 "nbt:\"base\"" + PerLevelAboveFirst int32 "nbt:\"per_level_above_first\"" + } "nbt:\"min_cost\"" + MaxLevel int32 "nbt:\"max_level\"" + Slots []string "nbt:\"slots\"" + SupportedItems string "nbt:\"supported_items\"" + Weight int32 "nbt:\"weight\"" + ExclusiveSet string "nbt:\"exclusive_set\"" + PrimaryItems string "nbt:\"primary_items\"" +}(nil), "minecraft:jukebox_song": map[string]struct { ComparatorOutput int32 "nbt:\"comparator_output\"" Description struct { Translate string "nbt:\"translate\"" @@ -164,11 +405,11 @@ var Registries = registries{BannerPattern: map[string]struct { Translate string "nbt:\"translate\"" }{Translate: "jukebox_song.minecraft.wait"}, LengthInSeconds: 238, SoundEvent: "minecraft:music_disc.wait"}, "minecraft:ward": {ComparatorOutput: 10, Description: struct { Translate string "nbt:\"translate\"" -}{Translate: "jukebox_song.minecraft.ward"}, LengthInSeconds: 251, SoundEvent: "minecraft:music_disc.ward"}}, PaintingVariant: map[string]struct { +}{Translate: "jukebox_song.minecraft.ward"}, LengthInSeconds: 251, SoundEvent: "minecraft:music_disc.ward"}}, "minecraft:painting_variant": map[string]struct { AssetId string "nbt:\"asset_id\"" Height int32 "nbt:\"height\"" Weight int32 "nbt:\"width\"" -}{"minecraft:alban": {AssetId: "minecraft:alban", Height: 1, Weight: 1}, "minecraft:aztec": {AssetId: "minecraft:aztec", Height: 1, Weight: 1}, "minecraft:aztec2": {AssetId: "minecraft:aztec2", Height: 1, Weight: 1}, "minecraft:backyard": {AssetId: "minecraft:backyard", Height: 4, Weight: 3}, "minecraft:baroque": {AssetId: "minecraft:baroque", Height: 2, Weight: 2}, "minecraft:bomb": {AssetId: "minecraft:bomb", Height: 1, Weight: 1}, "minecraft:bouquet": {AssetId: "minecraft:bouquet", Height: 3, Weight: 3}, "minecraft:burning_skull": {AssetId: "minecraft:burning_skull", Height: 4, Weight: 4}, "minecraft:bust": {AssetId: "minecraft:bust", Height: 2, Weight: 2}, "minecraft:cavebird": {AssetId: "minecraft:cavebird", Height: 3, Weight: 3}, "minecraft:changing": {AssetId: "minecraft:changing", Height: 2, Weight: 4}, "minecraft:cotan": {AssetId: "minecraft:cotan", Height: 3, Weight: 3}, "minecraft:courbet": {AssetId: "minecraft:courbet", Height: 1, Weight: 2}, "minecraft:creebet": {AssetId: "minecraft:creebet", Height: 1, Weight: 2}, "minecraft:donkey_kong": {AssetId: "minecraft:donkey_kong", Height: 3, Weight: 4}, "minecraft:earth": {AssetId: "minecraft:earth", Height: 2, Weight: 2}, "minecraft:endboss": {AssetId: "minecraft:endboss", Height: 3, Weight: 3}, "minecraft:fern": {AssetId: "minecraft:fern", Height: 3, Weight: 3}, "minecraft:fighters": {AssetId: "minecraft:fighters", Height: 2, Weight: 4}, "minecraft:finding": {AssetId: "minecraft:finding", Height: 2, Weight: 4}, "minecraft:fire": {AssetId: "minecraft:fire", Height: 2, Weight: 2}, "minecraft:graham": {AssetId: "minecraft:graham", Height: 2, Weight: 1}, "minecraft:humble": {AssetId: "minecraft:humble", Height: 2, Weight: 2}, "minecraft:kebab": {AssetId: "minecraft:kebab", Height: 1, Weight: 1}, "minecraft:lowmist": {AssetId: "minecraft:lowmist", Height: 2, Weight: 4}, "minecraft:match": {AssetId: "minecraft:match", Height: 2, Weight: 2}, "minecraft:meditative": {AssetId: "minecraft:meditative", Height: 1, Weight: 1}, "minecraft:orb": {AssetId: "minecraft:orb", Height: 4, Weight: 4}, "minecraft:owlemons": {AssetId: "minecraft:owlemons", Height: 3, Weight: 3}, "minecraft:passage": {AssetId: "minecraft:passage", Height: 2, Weight: 4}, "minecraft:pigscene": {AssetId: "minecraft:pigscene", Height: 4, Weight: 4}, "minecraft:plant": {AssetId: "minecraft:plant", Height: 1, Weight: 1}, "minecraft:pointer": {AssetId: "minecraft:pointer", Height: 4, Weight: 4}, "minecraft:pond": {AssetId: "minecraft:pond", Height: 4, Weight: 3}, "minecraft:pool": {AssetId: "minecraft:pool", Height: 1, Weight: 2}, "minecraft:prairie_ride": {AssetId: "minecraft:prairie_ride", Height: 2, Weight: 1}, "minecraft:sea": {AssetId: "minecraft:sea", Height: 1, Weight: 2}, "minecraft:skeleton": {AssetId: "minecraft:skeleton", Height: 3, Weight: 4}, "minecraft:skull_and_roses": {AssetId: "minecraft:skull_and_roses", Height: 2, Weight: 2}, "minecraft:stage": {AssetId: "minecraft:stage", Height: 2, Weight: 2}, "minecraft:sunflowers": {AssetId: "minecraft:sunflowers", Height: 3, Weight: 3}, "minecraft:sunset": {AssetId: "minecraft:sunset", Height: 1, Weight: 2}, "minecraft:tides": {AssetId: "minecraft:tides", Height: 3, Weight: 3}, "minecraft:unpacked": {AssetId: "minecraft:unpacked", Height: 4, Weight: 4}, "minecraft:void": {AssetId: "minecraft:void", Height: 2, Weight: 2}, "minecraft:wanderer": {AssetId: "minecraft:wanderer", Height: 2, Weight: 1}, "minecraft:wasteland": {AssetId: "minecraft:wasteland", Height: 1, Weight: 1}, "minecraft:water": {AssetId: "minecraft:water", Height: 2, Weight: 2}, "minecraft:wind": {AssetId: "minecraft:wind", Height: 2, Weight: 2}, "minecraft:wither": {AssetId: "minecraft:wither", Height: 2, Weight: 2}}, TrimMaterial: map[string]struct { +}{"minecraft:alban": {AssetId: "minecraft:alban", Height: 1, Weight: 1}, "minecraft:aztec": {AssetId: "minecraft:aztec", Height: 1, Weight: 1}, "minecraft:aztec2": {AssetId: "minecraft:aztec2", Height: 1, Weight: 1}, "minecraft:backyard": {AssetId: "minecraft:backyard", Height: 4, Weight: 3}, "minecraft:baroque": {AssetId: "minecraft:baroque", Height: 2, Weight: 2}, "minecraft:bomb": {AssetId: "minecraft:bomb", Height: 1, Weight: 1}, "minecraft:bouquet": {AssetId: "minecraft:bouquet", Height: 3, Weight: 3}, "minecraft:burning_skull": {AssetId: "minecraft:burning_skull", Height: 4, Weight: 4}, "minecraft:bust": {AssetId: "minecraft:bust", Height: 2, Weight: 2}, "minecraft:cavebird": {AssetId: "minecraft:cavebird", Height: 3, Weight: 3}, "minecraft:changing": {AssetId: "minecraft:changing", Height: 2, Weight: 4}, "minecraft:cotan": {AssetId: "minecraft:cotan", Height: 3, Weight: 3}, "minecraft:courbet": {AssetId: "minecraft:courbet", Height: 1, Weight: 2}, "minecraft:creebet": {AssetId: "minecraft:creebet", Height: 1, Weight: 2}, "minecraft:donkey_kong": {AssetId: "minecraft:donkey_kong", Height: 3, Weight: 4}, "minecraft:earth": {AssetId: "minecraft:earth", Height: 2, Weight: 2}, "minecraft:endboss": {AssetId: "minecraft:endboss", Height: 3, Weight: 3}, "minecraft:fern": {AssetId: "minecraft:fern", Height: 3, Weight: 3}, "minecraft:fighters": {AssetId: "minecraft:fighters", Height: 2, Weight: 4}, "minecraft:finding": {AssetId: "minecraft:finding", Height: 2, Weight: 4}, "minecraft:fire": {AssetId: "minecraft:fire", Height: 2, Weight: 2}, "minecraft:graham": {AssetId: "minecraft:graham", Height: 2, Weight: 1}, "minecraft:humble": {AssetId: "minecraft:humble", Height: 2, Weight: 2}, "minecraft:kebab": {AssetId: "minecraft:kebab", Height: 1, Weight: 1}, "minecraft:lowmist": {AssetId: "minecraft:lowmist", Height: 2, Weight: 4}, "minecraft:match": {AssetId: "minecraft:match", Height: 2, Weight: 2}, "minecraft:meditative": {AssetId: "minecraft:meditative", Height: 1, Weight: 1}, "minecraft:orb": {AssetId: "minecraft:orb", Height: 4, Weight: 4}, "minecraft:owlemons": {AssetId: "minecraft:owlemons", Height: 3, Weight: 3}, "minecraft:passage": {AssetId: "minecraft:passage", Height: 2, Weight: 4}, "minecraft:pigscene": {AssetId: "minecraft:pigscene", Height: 4, Weight: 4}, "minecraft:plant": {AssetId: "minecraft:plant", Height: 1, Weight: 1}, "minecraft:pointer": {AssetId: "minecraft:pointer", Height: 4, Weight: 4}, "minecraft:pond": {AssetId: "minecraft:pond", Height: 4, Weight: 3}, "minecraft:pool": {AssetId: "minecraft:pool", Height: 1, Weight: 2}, "minecraft:prairie_ride": {AssetId: "minecraft:prairie_ride", Height: 2, Weight: 1}, "minecraft:sea": {AssetId: "minecraft:sea", Height: 1, Weight: 2}, "minecraft:skeleton": {AssetId: "minecraft:skeleton", Height: 3, Weight: 4}, "minecraft:skull_and_roses": {AssetId: "minecraft:skull_and_roses", Height: 2, Weight: 2}, "minecraft:stage": {AssetId: "minecraft:stage", Height: 2, Weight: 2}, "minecraft:sunflowers": {AssetId: "minecraft:sunflowers", Height: 3, Weight: 3}, "minecraft:sunset": {AssetId: "minecraft:sunset", Height: 1, Weight: 2}, "minecraft:tides": {AssetId: "minecraft:tides", Height: 3, Weight: 3}, "minecraft:unpacked": {AssetId: "minecraft:unpacked", Height: 4, Weight: 4}, "minecraft:void": {AssetId: "minecraft:void", Height: 2, Weight: 2}, "minecraft:wanderer": {AssetId: "minecraft:wanderer", Height: 2, Weight: 1}, "minecraft:wasteland": {AssetId: "minecraft:wasteland", Height: 1, Weight: 1}, "minecraft:water": {AssetId: "minecraft:water", Height: 2, Weight: 2}, "minecraft:wind": {AssetId: "minecraft:wind", Height: 2, Weight: 2}, "minecraft:wither": {AssetId: "minecraft:wither", Height: 2, Weight: 2}}, "minecraft:trim_material": map[string]struct { AssetName string "nbt:\"asset_name\"" Description struct { Color string "nbt:\"color\"" @@ -251,7 +492,7 @@ var Registries = registries{BannerPattern: map[string]struct { Diamond string "nbt:\"minecraft:diamond,omitempty\"" Gold string "nbt:\"minecraft:gold,omitempty\"" Iron string "nbt:\"minecraft:iron,omitempty\"" -}{Diamond: "", Gold: "", Iron: ""}}}, TrimPattern: map[string]struct { +}{Diamond: "", Gold: "", Iron: ""}}}, "minecraft:trim_pattern": map[string]struct { AssetId string "nbt:\"asset_id\"" Decal bool "nbt:\"decal\"" Description struct { @@ -294,12 +535,12 @@ var Registries = registries{BannerPattern: map[string]struct { Translate string "nbt:\"translate\"" }{Translate: "trim_pattern.minecraft.wayfinder"}, TemplateItem: "minecraft:wayfinder_armor_trim_smithing_template"}, "minecraft:wild": {AssetId: "minecraft:wild", Decal: false, Description: struct { Translate string "nbt:\"translate\"" -}{Translate: "trim_pattern.minecraft.wild"}, TemplateItem: "minecraft:wild_armor_trim_smithing_template"}}, WolfVariant: map[string]struct { +}{Translate: "trim_pattern.minecraft.wild"}, TemplateItem: "minecraft:wild_armor_trim_smithing_template"}}, "minecraft:wolf_variant": map[string]struct { AngryTexture string "nbt:\"angry_texture\"" Biomes string "nbt:\"biomes\"" TameTexture string "nbt:\"tame_texture\"" WildTexture string "nbt:\"wild_texture\"" -}{"minecraft:ashen": {AngryTexture: "minecraft:entity/wolf/wolf_ashen_angry", Biomes: "minecraft:snowy_taiga", TameTexture: "minecraft:entity/wolf/wolf_ashen_tame", WildTexture: "minecraft:entity/wolf/wolf_ashen"}, "minecraft:black": {AngryTexture: "minecraft:entity/wolf/wolf_black_angry", Biomes: "minecraft:old_growth_pine_taiga", TameTexture: "minecraft:entity/wolf/wolf_black_tame", WildTexture: "minecraft:entity/wolf/wolf_black"}, "minecraft:chestnut": {AngryTexture: "minecraft:entity/wolf/wolf_chestnut_angry", Biomes: "minecraft:old_growth_spruce_taiga", TameTexture: "minecraft:entity/wolf/wolf_chestnut_tame", WildTexture: "minecraft:entity/wolf/wolf_chestnut"}, "minecraft:pale": {AngryTexture: "minecraft:entity/wolf/wolf_angry", Biomes: "minecraft:taiga", TameTexture: "minecraft:entity/wolf/wolf_tame", WildTexture: "minecraft:entity/wolf/wolf"}, "minecraft:rusty": {AngryTexture: "minecraft:entity/wolf/wolf_rusty_angry", Biomes: "#minecraft:is_jungle", TameTexture: "minecraft:entity/wolf/wolf_rusty_tame", WildTexture: "minecraft:entity/wolf/wolf_rusty"}, "minecraft:snowy": {AngryTexture: "minecraft:entity/wolf/wolf_snowy_angry", Biomes: "minecraft:grove", TameTexture: "minecraft:entity/wolf/wolf_snowy_tame", WildTexture: "minecraft:entity/wolf/wolf_snowy"}, "minecraft:spotted": {AngryTexture: "minecraft:entity/wolf/wolf_spotted_angry", Biomes: "#minecraft:is_savanna", TameTexture: "minecraft:entity/wolf/wolf_spotted_tame", WildTexture: "minecraft:entity/wolf/wolf_spotted"}, "minecraft:striped": {AngryTexture: "minecraft:entity/wolf/wolf_striped_angry", Biomes: "#minecraft:is_badlands", TameTexture: "minecraft:entity/wolf/wolf_striped_tame", WildTexture: "minecraft:entity/wolf/wolf_striped"}, "minecraft:woods": {AngryTexture: "minecraft:entity/wolf/wolf_woods_angry", Biomes: "minecraft:forest", TameTexture: "minecraft:entity/wolf/wolf_woods_tame", WildTexture: "minecraft:entity/wolf/wolf_woods"}}, WorldgenBiome: map[string]struct { +}{"minecraft:ashen": {AngryTexture: "minecraft:entity/wolf/wolf_ashen_angry", Biomes: "minecraft:snowy_taiga", TameTexture: "minecraft:entity/wolf/wolf_ashen_tame", WildTexture: "minecraft:entity/wolf/wolf_ashen"}, "minecraft:black": {AngryTexture: "minecraft:entity/wolf/wolf_black_angry", Biomes: "minecraft:old_growth_pine_taiga", TameTexture: "minecraft:entity/wolf/wolf_black_tame", WildTexture: "minecraft:entity/wolf/wolf_black"}, "minecraft:chestnut": {AngryTexture: "minecraft:entity/wolf/wolf_chestnut_angry", Biomes: "minecraft:old_growth_spruce_taiga", TameTexture: "minecraft:entity/wolf/wolf_chestnut_tame", WildTexture: "minecraft:entity/wolf/wolf_chestnut"}, "minecraft:pale": {AngryTexture: "minecraft:entity/wolf/wolf_angry", Biomes: "minecraft:taiga", TameTexture: "minecraft:entity/wolf/wolf_tame", WildTexture: "minecraft:entity/wolf/wolf"}, "minecraft:rusty": {AngryTexture: "minecraft:entity/wolf/wolf_rusty_angry", Biomes: "#minecraft:is_jungle", TameTexture: "minecraft:entity/wolf/wolf_rusty_tame", WildTexture: "minecraft:entity/wolf/wolf_rusty"}, "minecraft:snowy": {AngryTexture: "minecraft:entity/wolf/wolf_snowy_angry", Biomes: "minecraft:grove", TameTexture: "minecraft:entity/wolf/wolf_snowy_tame", WildTexture: "minecraft:entity/wolf/wolf_snowy"}, "minecraft:spotted": {AngryTexture: "minecraft:entity/wolf/wolf_spotted_angry", Biomes: "#minecraft:is_savanna", TameTexture: "minecraft:entity/wolf/wolf_spotted_tame", WildTexture: "minecraft:entity/wolf/wolf_spotted"}, "minecraft:striped": {AngryTexture: "minecraft:entity/wolf/wolf_striped_angry", Biomes: "#minecraft:is_badlands", TameTexture: "minecraft:entity/wolf/wolf_striped_tame", WildTexture: "minecraft:entity/wolf/wolf_striped"}, "minecraft:woods": {AngryTexture: "minecraft:entity/wolf/wolf_woods_angry", Biomes: "minecraft:forest", TameTexture: "minecraft:entity/wolf/wolf_woods_tame", WildTexture: "minecraft:entity/wolf/wolf_woods"}}, "minecraft:worldgen/biome": map[string]struct { Downfall float32 "nbt:\"downfall\"" Effects struct { FogColor int32 "nbt:\"fog_color\"" diff --git a/net/registry/embed.go.txt b/net/registry/embed.go.txt new file mode 100644 index 0000000..b5156b4 --- /dev/null +++ b/net/registry/embed.go.txt @@ -0,0 +1,2182 @@ +package registry + +// DO NOT TOUCH! + +var _Registries = registries{BannerPattern: map[string]struct { + AssetId string "nbt:\"asset_id\"" + TranslationKey string "nbt:\"translation_key\"" +}{"minecraft:base": {AssetId: "minecraft:base", TranslationKey: "block.minecraft.banner.base"}, "minecraft:border": {AssetId: "minecraft:border", TranslationKey: "block.minecraft.banner.border"}, "minecraft:bricks": {AssetId: "minecraft:bricks", TranslationKey: "block.minecraft.banner.bricks"}, "minecraft:circle": {AssetId: "minecraft:circle", TranslationKey: "block.minecraft.banner.circle"}, "minecraft:creeper": {AssetId: "minecraft:creeper", TranslationKey: "block.minecraft.banner.creeper"}, "minecraft:cross": {AssetId: "minecraft:cross", TranslationKey: "block.minecraft.banner.cross"}, "minecraft:curly_border": {AssetId: "minecraft:curly_border", TranslationKey: "block.minecraft.banner.curly_border"}, "minecraft:diagonal_left": {AssetId: "minecraft:diagonal_left", TranslationKey: "block.minecraft.banner.diagonal_left"}, "minecraft:diagonal_right": {AssetId: "minecraft:diagonal_right", TranslationKey: "block.minecraft.banner.diagonal_right"}, "minecraft:diagonal_up_left": {AssetId: "minecraft:diagonal_up_left", TranslationKey: "block.minecraft.banner.diagonal_up_left"}, "minecraft:diagonal_up_right": {AssetId: "minecraft:diagonal_up_right", TranslationKey: "block.minecraft.banner.diagonal_up_right"}, "minecraft:flow": {AssetId: "minecraft:flow", TranslationKey: "block.minecraft.banner.flow"}, "minecraft:flower": {AssetId: "minecraft:flower", TranslationKey: "block.minecraft.banner.flower"}, "minecraft:globe": {AssetId: "minecraft:globe", TranslationKey: "block.minecraft.banner.globe"}, "minecraft:gradient": {AssetId: "minecraft:gradient", TranslationKey: "block.minecraft.banner.gradient"}, "minecraft:gradient_up": {AssetId: "minecraft:gradient_up", TranslationKey: "block.minecraft.banner.gradient_up"}, "minecraft:guster": {AssetId: "minecraft:guster", TranslationKey: "block.minecraft.banner.guster"}, "minecraft:half_horizontal": {AssetId: "minecraft:half_horizontal", TranslationKey: "block.minecraft.banner.half_horizontal"}, "minecraft:half_horizontal_bottom": {AssetId: "minecraft:half_horizontal_bottom", TranslationKey: "block.minecraft.banner.half_horizontal_bottom"}, "minecraft:half_vertical": {AssetId: "minecraft:half_vertical", TranslationKey: "block.minecraft.banner.half_vertical"}, "minecraft:half_vertical_right": {AssetId: "minecraft:half_vertical_right", TranslationKey: "block.minecraft.banner.half_vertical_right"}, "minecraft:mojang": {AssetId: "minecraft:mojang", TranslationKey: "block.minecraft.banner.mojang"}, "minecraft:piglin": {AssetId: "minecraft:piglin", TranslationKey: "block.minecraft.banner.piglin"}, "minecraft:rhombus": {AssetId: "minecraft:rhombus", TranslationKey: "block.minecraft.banner.rhombus"}, "minecraft:skull": {AssetId: "minecraft:skull", TranslationKey: "block.minecraft.banner.skull"}, "minecraft:small_stripes": {AssetId: "minecraft:small_stripes", TranslationKey: "block.minecraft.banner.small_stripes"}, "minecraft:square_bottom_left": {AssetId: "minecraft:square_bottom_left", TranslationKey: "block.minecraft.banner.square_bottom_left"}, "minecraft:square_bottom_right": {AssetId: "minecraft:square_bottom_right", TranslationKey: "block.minecraft.banner.square_bottom_right"}, "minecraft:square_top_left": {AssetId: "minecraft:square_top_left", TranslationKey: "block.minecraft.banner.square_top_left"}, "minecraft:square_top_right": {AssetId: "minecraft:square_top_right", TranslationKey: "block.minecraft.banner.square_top_right"}, "minecraft:straight_cross": {AssetId: "minecraft:straight_cross", TranslationKey: "block.minecraft.banner.straight_cross"}, "minecraft:stripe_bottom": {AssetId: "minecraft:stripe_bottom", TranslationKey: "block.minecraft.banner.stripe_bottom"}, "minecraft:stripe_center": {AssetId: "minecraft:stripe_center", TranslationKey: "block.minecraft.banner.stripe_center"}, "minecraft:stripe_downleft": {AssetId: "minecraft:stripe_downleft", TranslationKey: "block.minecraft.banner.stripe_downleft"}, "minecraft:stripe_downright": {AssetId: "minecraft:stripe_downright", TranslationKey: "block.minecraft.banner.stripe_downright"}, "minecraft:stripe_left": {AssetId: "minecraft:stripe_left", TranslationKey: "block.minecraft.banner.stripe_left"}, "minecraft:stripe_middle": {AssetId: "minecraft:stripe_middle", TranslationKey: "block.minecraft.banner.stripe_middle"}, "minecraft:stripe_right": {AssetId: "minecraft:stripe_right", TranslationKey: "block.minecraft.banner.stripe_right"}, "minecraft:stripe_top": {AssetId: "minecraft:stripe_top", TranslationKey: "block.minecraft.banner.stripe_top"}, "minecraft:triangle_bottom": {AssetId: "minecraft:triangle_bottom", TranslationKey: "block.minecraft.banner.triangle_bottom"}, "minecraft:triangle_top": {AssetId: "minecraft:triangle_top", TranslationKey: "block.minecraft.banner.triangle_top"}, "minecraft:triangles_bottom": {AssetId: "minecraft:triangles_bottom", TranslationKey: "block.minecraft.banner.triangles_bottom"}, "minecraft:triangles_top": {AssetId: "minecraft:triangles_top", TranslationKey: "block.minecraft.banner.triangles_top"}}, ChatType: map[string]ChatType{"minecraft:chat": {Chat: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" + Style struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" + } "nbt:\"style,omitempty\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.text", Style: struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" +}{Color: "", Italic: false}}, Narration: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.text.narrate"}}, "minecraft:emote_command": {Chat: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" + Style struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" + } "nbt:\"style,omitempty\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.emote", Style: struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" +}{Color: "", Italic: false}}, Narration: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.emote"}}, "minecraft:msg_command_incoming": {Chat: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" + Style struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" + } "nbt:\"style,omitempty\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "commands.message.display.incoming", Style: struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" +}{Color: "", Italic: false}}, Narration: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.text.narrate"}}, "minecraft:msg_command_outgoing": {Chat: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" + Style struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" + } "nbt:\"style,omitempty\"" +}{Parameters: []string{"target", "content"}, TranslationKey: "commands.message.display.outgoing", Style: struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" +}{Color: "", Italic: false}}, Narration: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.text.narrate"}}, "minecraft:say_command": {Chat: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" + Style struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" + } "nbt:\"style,omitempty\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.announcement", Style: struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" +}{Color: "", Italic: false}}, Narration: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.text.narrate"}}, "minecraft:team_msg_command_incoming": {Chat: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" + Style struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" + } "nbt:\"style,omitempty\"" +}{Parameters: []string{"target", "sender", "content"}, TranslationKey: "chat.type.team.text", Style: struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" +}{Color: "", Italic: false}}, Narration: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.text.narrate"}}, "minecraft:team_msg_command_outgoing": {Chat: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" + Style struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" + } "nbt:\"style,omitempty\"" +}{Parameters: []string{"target", "sender", "content"}, TranslationKey: "chat.type.team.sent", Style: struct { + Color string "nbt:\"color\"" + Italic bool "nbt:\"italic\"" +}{Color: "", Italic: false}}, Narration: struct { + Parameters []string "nbt:\"parameters\"" + TranslationKey string "nbt:\"translation_key\"" +}{Parameters: []string{"sender", "content"}, TranslationKey: "chat.type.text.narrate"}}}, DamageType: map[string]struct { + Exhaustion float32 "nbt:\"exhaustion\"" + MessageID string "nbt:\"message_id\"" + Scaling string "nbt:\"scaling\"" + DeathMessageType string "nbt:\"death_message_type,omitempty\"" + Effects string "nbt:\"effects,omitempty\"" +}{"minecraft:arrow": {Exhaustion: 0.1, MessageID: "arrow", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:bad_respawn_point": {Exhaustion: 0.1, MessageID: "badRespawnPoint", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:cactus": {Exhaustion: 0.1, MessageID: "cactus", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:campfire": {Exhaustion: 0.1, MessageID: "inFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:cramming": {Exhaustion: 0, MessageID: "cramming", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:dragon_breath": {Exhaustion: 0, MessageID: "dragonBreath", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:drown": {Exhaustion: 0, MessageID: "drown", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:dry_out": {Exhaustion: 0.1, MessageID: "dryout", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:explosion": {Exhaustion: 0.1, MessageID: "explosion", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:fall": {Exhaustion: 0, MessageID: "fall", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:falling_anvil": {Exhaustion: 0.1, MessageID: "anvil", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:falling_block": {Exhaustion: 0.1, MessageID: "fallingBlock", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:falling_stalactite": {Exhaustion: 0.1, MessageID: "fallingStalactite", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:fireball": {Exhaustion: 0.1, MessageID: "fireball", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:fireworks": {Exhaustion: 0.1, MessageID: "fireworks", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:fly_into_wall": {Exhaustion: 0, MessageID: "flyIntoWall", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:freeze": {Exhaustion: 0, MessageID: "freeze", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:generic": {Exhaustion: 0, MessageID: "generic", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:generic_kill": {Exhaustion: 0, MessageID: "genericKill", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:hot_floor": {Exhaustion: 0.1, MessageID: "hotFloor", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:in_fire": {Exhaustion: 0.1, MessageID: "inFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:in_wall": {Exhaustion: 0, MessageID: "inWall", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:indirect_magic": {Exhaustion: 0, MessageID: "indirectMagic", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:lava": {Exhaustion: 0.1, MessageID: "lava", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:lightning_bolt": {Exhaustion: 0.1, MessageID: "lightningBolt", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:magic": {Exhaustion: 0, MessageID: "magic", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:mob_attack": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:mob_attack_no_aggro": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:mob_projectile": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:on_fire": {Exhaustion: 0, MessageID: "onFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:out_of_world": {Exhaustion: 0, MessageID: "outOfWorld", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:outside_border": {Exhaustion: 0, MessageID: "outsideBorder", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:player_attack": {Exhaustion: 0.1, MessageID: "player", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:player_explosion": {Exhaustion: 0.1, MessageID: "explosion.player", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:sonic_boom": {Exhaustion: 0, MessageID: "sonic_boom", Scaling: "always", DeathMessageType: "", Effects: ""}, "minecraft:spit": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:stalagmite": {Exhaustion: 0, MessageID: "stalagmite", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:starve": {Exhaustion: 0, MessageID: "starve", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:sting": {Exhaustion: 0.1, MessageID: "sting", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:sweet_berry_bush": {Exhaustion: 0.1, MessageID: "sweetBerryBush", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:thorns": {Exhaustion: 0.1, MessageID: "thorns", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:thrown": {Exhaustion: 0.1, MessageID: "thrown", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:trident": {Exhaustion: 0.1, MessageID: "trident", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:unattributed_fireball": {Exhaustion: 0.1, MessageID: "onFire", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:wind_charge": {Exhaustion: 0.1, MessageID: "mob", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:wither": {Exhaustion: 0, MessageID: "wither", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}, "minecraft:wither_skull": {Exhaustion: 0.1, MessageID: "witherSkull", Scaling: "when_caused_by_living_non_player", DeathMessageType: "", Effects: ""}}, DimensionType: struct { + Overworld Dimension "nbt:\"minecraft:overworld\"" + OverworldCaves Dimension "nbt:\"minecraft:overworld_caves\"" + TheEnd Dimension "nbt:\"minecraft:the_end\"" + TheNether Dimension1 "nbt:\"minecraft:the_nether\"" +}{Overworld: Dimension{FixedTime: 0, AmbientLight: 0, BedWorks: true, CoordinateScale: 1, Effects: "minecraft:overworld", HasCeiling: false, HasRaids: true, HasSkylight: true, Height: 384, Infiniburn: "#minecraft:infiniburn_overworld", LogicalHeight: 384, MinY: -64, MonsterSpawnBlockLightLimit: 0, Natural: true, Ultrawarm: false, PiglinSafe: false, RespawnAnchorWorks: false, MonsterSpawnLightLevel: struct { + MaxInclusive int32 "nbt:\"max_inclusive\"" + MinInclusive int32 "nbt:\"min_inclusive\"" + Type string "nbt:\"type\"" +}{MaxInclusive: 7, MinInclusive: 0, Type: "minecraft:uniform"}}, OverworldCaves: Dimension{FixedTime: 0, AmbientLight: 0, BedWorks: true, CoordinateScale: 1, Effects: "minecraft:overworld", HasCeiling: true, HasRaids: true, HasSkylight: true, Height: 384, Infiniburn: "#minecraft:infiniburn_overworld", LogicalHeight: 384, MinY: -64, MonsterSpawnBlockLightLimit: 0, Natural: true, Ultrawarm: false, PiglinSafe: false, RespawnAnchorWorks: false, MonsterSpawnLightLevel: struct { + MaxInclusive int32 "nbt:\"max_inclusive\"" + MinInclusive int32 "nbt:\"min_inclusive\"" + Type string "nbt:\"type\"" +}{MaxInclusive: 7, MinInclusive: 0, Type: "minecraft:uniform"}}, TheEnd: Dimension{FixedTime: 6000, AmbientLight: 0, BedWorks: false, CoordinateScale: 1, Effects: "minecraft:the_end", HasCeiling: false, HasRaids: true, HasSkylight: false, Height: 256, Infiniburn: "#minecraft:infiniburn_end", LogicalHeight: 256, MinY: 0, MonsterSpawnBlockLightLimit: 0, Natural: false, Ultrawarm: false, PiglinSafe: false, RespawnAnchorWorks: false, MonsterSpawnLightLevel: struct { + MaxInclusive int32 "nbt:\"max_inclusive\"" + MinInclusive int32 "nbt:\"min_inclusive\"" + Type string "nbt:\"type\"" +}{MaxInclusive: 7, MinInclusive: 0, Type: "minecraft:uniform"}}, TheNether: Dimension1{FixedTime: 18000, AmbientLight: 0.1, BedWorks: false, CoordinateScale: 8, Effects: "minecraft:the_nether", HasCeiling: true, HasRaids: false, HasSkylight: false, Height: 256, Infiniburn: "#minecraft:infiniburn_nether", LogicalHeight: 128, MinY: 0, MonsterSpawnBlockLightLimit: 15, Natural: false, Ultrawarm: true, PiglinSafe: true, RespawnAnchorWorks: true, MonsterSpawnLightLevel: 7}}, JukeboxSong: map[string]struct { + ComparatorOutput int32 "nbt:\"comparator_output\"" + Description struct { + Translate string "nbt:\"translate\"" + } "nbt:\"description\"" + LengthInSeconds float32 "nbt:\"length_in_seconds\"" + SoundEvent string "nbt:\"sound_event\"" +}{"minecraft:11": {ComparatorOutput: 11, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.11"}, LengthInSeconds: 71, SoundEvent: "minecraft:music_disc.11"}, "minecraft:13": {ComparatorOutput: 1, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.13"}, LengthInSeconds: 178, SoundEvent: "minecraft:music_disc.13"}, "minecraft:5": {ComparatorOutput: 15, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.5"}, LengthInSeconds: 178, SoundEvent: "minecraft:music_disc.5"}, "minecraft:blocks": {ComparatorOutput: 3, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.blocks"}, LengthInSeconds: 345, SoundEvent: "minecraft:music_disc.blocks"}, "minecraft:cat": {ComparatorOutput: 2, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.cat"}, LengthInSeconds: 185, SoundEvent: "minecraft:music_disc.cat"}, "minecraft:chirp": {ComparatorOutput: 4, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.chirp"}, LengthInSeconds: 185, SoundEvent: "minecraft:music_disc.chirp"}, "minecraft:creator": {ComparatorOutput: 12, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.creator"}, LengthInSeconds: 176, SoundEvent: "minecraft:music_disc.creator"}, "minecraft:creator_music_box": {ComparatorOutput: 11, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.creator_music_box"}, LengthInSeconds: 73, SoundEvent: "minecraft:music_disc.creator_music_box"}, "minecraft:far": {ComparatorOutput: 5, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.far"}, LengthInSeconds: 174, SoundEvent: "minecraft:music_disc.far"}, "minecraft:mall": {ComparatorOutput: 6, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.mall"}, LengthInSeconds: 197, SoundEvent: "minecraft:music_disc.mall"}, "minecraft:mellohi": {ComparatorOutput: 7, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.mellohi"}, LengthInSeconds: 96, SoundEvent: "minecraft:music_disc.mellohi"}, "minecraft:otherside": {ComparatorOutput: 14, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.otherside"}, LengthInSeconds: 195, SoundEvent: "minecraft:music_disc.otherside"}, "minecraft:pigstep": {ComparatorOutput: 13, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.pigstep"}, LengthInSeconds: 149, SoundEvent: "minecraft:music_disc.pigstep"}, "minecraft:precipice": {ComparatorOutput: 13, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.precipice"}, LengthInSeconds: 299, SoundEvent: "minecraft:music_disc.precipice"}, "minecraft:relic": {ComparatorOutput: 14, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.relic"}, LengthInSeconds: 218, SoundEvent: "minecraft:music_disc.relic"}, "minecraft:stal": {ComparatorOutput: 8, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.stal"}, LengthInSeconds: 150, SoundEvent: "minecraft:music_disc.stal"}, "minecraft:strad": {ComparatorOutput: 9, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.strad"}, LengthInSeconds: 188, SoundEvent: "minecraft:music_disc.strad"}, "minecraft:wait": {ComparatorOutput: 12, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.wait"}, LengthInSeconds: 238, SoundEvent: "minecraft:music_disc.wait"}, "minecraft:ward": {ComparatorOutput: 10, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "jukebox_song.minecraft.ward"}, LengthInSeconds: 251, SoundEvent: "minecraft:music_disc.ward"}}, PaintingVariant: map[string]struct { + AssetId string "nbt:\"asset_id\"" + Height int32 "nbt:\"height\"" + Weight int32 "nbt:\"width\"" +}{"minecraft:alban": {AssetId: "minecraft:alban", Height: 1, Weight: 1}, "minecraft:aztec": {AssetId: "minecraft:aztec", Height: 1, Weight: 1}, "minecraft:aztec2": {AssetId: "minecraft:aztec2", Height: 1, Weight: 1}, "minecraft:backyard": {AssetId: "minecraft:backyard", Height: 4, Weight: 3}, "minecraft:baroque": {AssetId: "minecraft:baroque", Height: 2, Weight: 2}, "minecraft:bomb": {AssetId: "minecraft:bomb", Height: 1, Weight: 1}, "minecraft:bouquet": {AssetId: "minecraft:bouquet", Height: 3, Weight: 3}, "minecraft:burning_skull": {AssetId: "minecraft:burning_skull", Height: 4, Weight: 4}, "minecraft:bust": {AssetId: "minecraft:bust", Height: 2, Weight: 2}, "minecraft:cavebird": {AssetId: "minecraft:cavebird", Height: 3, Weight: 3}, "minecraft:changing": {AssetId: "minecraft:changing", Height: 2, Weight: 4}, "minecraft:cotan": {AssetId: "minecraft:cotan", Height: 3, Weight: 3}, "minecraft:courbet": {AssetId: "minecraft:courbet", Height: 1, Weight: 2}, "minecraft:creebet": {AssetId: "minecraft:creebet", Height: 1, Weight: 2}, "minecraft:donkey_kong": {AssetId: "minecraft:donkey_kong", Height: 3, Weight: 4}, "minecraft:earth": {AssetId: "minecraft:earth", Height: 2, Weight: 2}, "minecraft:endboss": {AssetId: "minecraft:endboss", Height: 3, Weight: 3}, "minecraft:fern": {AssetId: "minecraft:fern", Height: 3, Weight: 3}, "minecraft:fighters": {AssetId: "minecraft:fighters", Height: 2, Weight: 4}, "minecraft:finding": {AssetId: "minecraft:finding", Height: 2, Weight: 4}, "minecraft:fire": {AssetId: "minecraft:fire", Height: 2, Weight: 2}, "minecraft:graham": {AssetId: "minecraft:graham", Height: 2, Weight: 1}, "minecraft:humble": {AssetId: "minecraft:humble", Height: 2, Weight: 2}, "minecraft:kebab": {AssetId: "minecraft:kebab", Height: 1, Weight: 1}, "minecraft:lowmist": {AssetId: "minecraft:lowmist", Height: 2, Weight: 4}, "minecraft:match": {AssetId: "minecraft:match", Height: 2, Weight: 2}, "minecraft:meditative": {AssetId: "minecraft:meditative", Height: 1, Weight: 1}, "minecraft:orb": {AssetId: "minecraft:orb", Height: 4, Weight: 4}, "minecraft:owlemons": {AssetId: "minecraft:owlemons", Height: 3, Weight: 3}, "minecraft:passage": {AssetId: "minecraft:passage", Height: 2, Weight: 4}, "minecraft:pigscene": {AssetId: "minecraft:pigscene", Height: 4, Weight: 4}, "minecraft:plant": {AssetId: "minecraft:plant", Height: 1, Weight: 1}, "minecraft:pointer": {AssetId: "minecraft:pointer", Height: 4, Weight: 4}, "minecraft:pond": {AssetId: "minecraft:pond", Height: 4, Weight: 3}, "minecraft:pool": {AssetId: "minecraft:pool", Height: 1, Weight: 2}, "minecraft:prairie_ride": {AssetId: "minecraft:prairie_ride", Height: 2, Weight: 1}, "minecraft:sea": {AssetId: "minecraft:sea", Height: 1, Weight: 2}, "minecraft:skeleton": {AssetId: "minecraft:skeleton", Height: 3, Weight: 4}, "minecraft:skull_and_roses": {AssetId: "minecraft:skull_and_roses", Height: 2, Weight: 2}, "minecraft:stage": {AssetId: "minecraft:stage", Height: 2, Weight: 2}, "minecraft:sunflowers": {AssetId: "minecraft:sunflowers", Height: 3, Weight: 3}, "minecraft:sunset": {AssetId: "minecraft:sunset", Height: 1, Weight: 2}, "minecraft:tides": {AssetId: "minecraft:tides", Height: 3, Weight: 3}, "minecraft:unpacked": {AssetId: "minecraft:unpacked", Height: 4, Weight: 4}, "minecraft:void": {AssetId: "minecraft:void", Height: 2, Weight: 2}, "minecraft:wanderer": {AssetId: "minecraft:wanderer", Height: 2, Weight: 1}, "minecraft:wasteland": {AssetId: "minecraft:wasteland", Height: 1, Weight: 1}, "minecraft:water": {AssetId: "minecraft:water", Height: 2, Weight: 2}, "minecraft:wind": {AssetId: "minecraft:wind", Height: 2, Weight: 2}, "minecraft:wither": {AssetId: "minecraft:wither", Height: 2, Weight: 2}}, TrimMaterial: map[string]struct { + AssetName string "nbt:\"asset_name\"" + Description struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" + } "nbt:\"description\"" + Ingredient string "nbt:\"ingredient\"" + ItemModelIndex float32 "nbt:\"item_model_index\"" + OverrideArmorMaterials struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" + } "nbt:\"override_armor_materials,omitempty\"" +}{"minecraft:amethyst": {AssetName: "amethyst", Description: struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" +}{Color: "#9A5CC6", Translate: "trim_material.minecraft.amethyst"}, Ingredient: "minecraft:amethyst_shard", ItemModelIndex: 1, OverrideArmorMaterials: struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" +}{Diamond: "", Gold: "", Iron: ""}}, "minecraft:copper": {AssetName: "copper", Description: struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" +}{Color: "#B4684D", Translate: "trim_material.minecraft.copper"}, Ingredient: "minecraft:copper_ingot", ItemModelIndex: 0.5, OverrideArmorMaterials: struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" +}{Diamond: "", Gold: "", Iron: ""}}, "minecraft:diamond": {AssetName: "diamond", Description: struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" +}{Color: "#6EECD2", Translate: "trim_material.minecraft.diamond"}, Ingredient: "minecraft:diamond", ItemModelIndex: 0.8, OverrideArmorMaterials: struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" +}{Diamond: "", Gold: "", Iron: ""}}, "minecraft:emerald": {AssetName: "emerald", Description: struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" +}{Color: "#11A036", Translate: "trim_material.minecraft.emerald"}, Ingredient: "minecraft:emerald", ItemModelIndex: 0.7, OverrideArmorMaterials: struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" +}{Diamond: "", Gold: "", Iron: ""}}, "minecraft:gold": {AssetName: "gold", Description: struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" +}{Color: "#DEB12D", Translate: "trim_material.minecraft.gold"}, Ingredient: "minecraft:gold_ingot", ItemModelIndex: 0.6, OverrideArmorMaterials: struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" +}{Diamond: "", Gold: "", Iron: ""}}, "minecraft:iron": {AssetName: "iron", Description: struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" +}{Color: "#ECECEC", Translate: "trim_material.minecraft.iron"}, Ingredient: "minecraft:iron_ingot", ItemModelIndex: 0.2, OverrideArmorMaterials: struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" +}{Diamond: "", Gold: "", Iron: ""}}, "minecraft:lapis": {AssetName: "lapis", Description: struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" +}{Color: "#416E97", Translate: "trim_material.minecraft.lapis"}, Ingredient: "minecraft:lapis_lazuli", ItemModelIndex: 0.9, OverrideArmorMaterials: struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" +}{Diamond: "", Gold: "", Iron: ""}}, "minecraft:netherite": {AssetName: "netherite", Description: struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" +}{Color: "#625859", Translate: "trim_material.minecraft.netherite"}, Ingredient: "minecraft:netherite_ingot", ItemModelIndex: 0.3, OverrideArmorMaterials: struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" +}{Diamond: "", Gold: "", Iron: ""}}, "minecraft:quartz": {AssetName: "quartz", Description: struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" +}{Color: "#E3D4C4", Translate: "trim_material.minecraft.quartz"}, Ingredient: "minecraft:quartz", ItemModelIndex: 0.1, OverrideArmorMaterials: struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" +}{Diamond: "", Gold: "", Iron: ""}}, "minecraft:redstone": {AssetName: "redstone", Description: struct { + Color string "nbt:\"color\"" + Translate string "nbt:\"translate\"" +}{Color: "#971607", Translate: "trim_material.minecraft.redstone"}, Ingredient: "minecraft:redstone", ItemModelIndex: 0.4, OverrideArmorMaterials: struct { + Diamond string "nbt:\"minecraft:diamond,omitempty\"" + Gold string "nbt:\"minecraft:gold,omitempty\"" + Iron string "nbt:\"minecraft:iron,omitempty\"" +}{Diamond: "", Gold: "", Iron: ""}}}, TrimPattern: map[string]struct { + AssetId string "nbt:\"asset_id\"" + Decal bool "nbt:\"decal\"" + Description struct { + Translate string "nbt:\"translate\"" + } "nbt:\"description\"" + TemplateItem string "nbt:\"template_item\"" +}{"minecraft:bolt": {AssetId: "minecraft:bolt", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.bolt"}, TemplateItem: "minecraft:bolt_armor_trim_smithing_template"}, "minecraft:coast": {AssetId: "minecraft:coast", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.coast"}, TemplateItem: "minecraft:coast_armor_trim_smithing_template"}, "minecraft:dune": {AssetId: "minecraft:dune", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.dune"}, TemplateItem: "minecraft:dune_armor_trim_smithing_template"}, "minecraft:eye": {AssetId: "minecraft:eye", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.eye"}, TemplateItem: "minecraft:eye_armor_trim_smithing_template"}, "minecraft:flow": {AssetId: "minecraft:flow", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.flow"}, TemplateItem: "minecraft:flow_armor_trim_smithing_template"}, "minecraft:host": {AssetId: "minecraft:host", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.host"}, TemplateItem: "minecraft:host_armor_trim_smithing_template"}, "minecraft:raiser": {AssetId: "minecraft:raiser", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.raiser"}, TemplateItem: "minecraft:raiser_armor_trim_smithing_template"}, "minecraft:rib": {AssetId: "minecraft:rib", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.rib"}, TemplateItem: "minecraft:rib_armor_trim_smithing_template"}, "minecraft:sentry": {AssetId: "minecraft:sentry", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.sentry"}, TemplateItem: "minecraft:sentry_armor_trim_smithing_template"}, "minecraft:shaper": {AssetId: "minecraft:shaper", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.shaper"}, TemplateItem: "minecraft:shaper_armor_trim_smithing_template"}, "minecraft:silence": {AssetId: "minecraft:silence", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.silence"}, TemplateItem: "minecraft:silence_armor_trim_smithing_template"}, "minecraft:snout": {AssetId: "minecraft:snout", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.snout"}, TemplateItem: "minecraft:snout_armor_trim_smithing_template"}, "minecraft:spire": {AssetId: "minecraft:spire", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.spire"}, TemplateItem: "minecraft:spire_armor_trim_smithing_template"}, "minecraft:tide": {AssetId: "minecraft:tide", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.tide"}, TemplateItem: "minecraft:tide_armor_trim_smithing_template"}, "minecraft:vex": {AssetId: "minecraft:vex", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.vex"}, TemplateItem: "minecraft:vex_armor_trim_smithing_template"}, "minecraft:ward": {AssetId: "minecraft:ward", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.ward"}, TemplateItem: "minecraft:ward_armor_trim_smithing_template"}, "minecraft:wayfinder": {AssetId: "minecraft:wayfinder", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.wayfinder"}, TemplateItem: "minecraft:wayfinder_armor_trim_smithing_template"}, "minecraft:wild": {AssetId: "minecraft:wild", Decal: false, Description: struct { + Translate string "nbt:\"translate\"" +}{Translate: "trim_pattern.minecraft.wild"}, TemplateItem: "minecraft:wild_armor_trim_smithing_template"}}, WolfVariant: map[string]struct { + AngryTexture string "nbt:\"angry_texture\"" + Biomes string "nbt:\"biomes\"" + TameTexture string "nbt:\"tame_texture\"" + WildTexture string "nbt:\"wild_texture\"" +}{"minecraft:ashen": {AngryTexture: "minecraft:entity/wolf/wolf_ashen_angry", Biomes: "minecraft:snowy_taiga", TameTexture: "minecraft:entity/wolf/wolf_ashen_tame", WildTexture: "minecraft:entity/wolf/wolf_ashen"}, "minecraft:black": {AngryTexture: "minecraft:entity/wolf/wolf_black_angry", Biomes: "minecraft:old_growth_pine_taiga", TameTexture: "minecraft:entity/wolf/wolf_black_tame", WildTexture: "minecraft:entity/wolf/wolf_black"}, "minecraft:chestnut": {AngryTexture: "minecraft:entity/wolf/wolf_chestnut_angry", Biomes: "minecraft:old_growth_spruce_taiga", TameTexture: "minecraft:entity/wolf/wolf_chestnut_tame", WildTexture: "minecraft:entity/wolf/wolf_chestnut"}, "minecraft:pale": {AngryTexture: "minecraft:entity/wolf/wolf_angry", Biomes: "minecraft:taiga", TameTexture: "minecraft:entity/wolf/wolf_tame", WildTexture: "minecraft:entity/wolf/wolf"}, "minecraft:rusty": {AngryTexture: "minecraft:entity/wolf/wolf_rusty_angry", Biomes: "#minecraft:is_jungle", TameTexture: "minecraft:entity/wolf/wolf_rusty_tame", WildTexture: "minecraft:entity/wolf/wolf_rusty"}, "minecraft:snowy": {AngryTexture: "minecraft:entity/wolf/wolf_snowy_angry", Biomes: "minecraft:grove", TameTexture: "minecraft:entity/wolf/wolf_snowy_tame", WildTexture: "minecraft:entity/wolf/wolf_snowy"}, "minecraft:spotted": {AngryTexture: "minecraft:entity/wolf/wolf_spotted_angry", Biomes: "#minecraft:is_savanna", TameTexture: "minecraft:entity/wolf/wolf_spotted_tame", WildTexture: "minecraft:entity/wolf/wolf_spotted"}, "minecraft:striped": {AngryTexture: "minecraft:entity/wolf/wolf_striped_angry", Biomes: "#minecraft:is_badlands", TameTexture: "minecraft:entity/wolf/wolf_striped_tame", WildTexture: "minecraft:entity/wolf/wolf_striped"}, "minecraft:woods": {AngryTexture: "minecraft:entity/wolf/wolf_woods_angry", Biomes: "minecraft:forest", TameTexture: "minecraft:entity/wolf/wolf_woods_tame", WildTexture: "minecraft:entity/wolf/wolf_woods"}}, WorldgenBiome: map[string]struct { + Downfall float32 "nbt:\"downfall\"" + Effects struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" + } "nbt:\"effects\"" + HasPrecipitation bool "nbt:\"has_precipitation\"" + Temperature float32 "nbt:\"temperature\"" +}{"minecraft:badlands": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:bamboo_jungle": {Downfall: 0.9, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7842047, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.95}, "minecraft:basalt_deltas": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 6840176, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.basalt_deltas.mood", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:beach": {Downfall: 0.4, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7907327, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.8}, "minecraft:birch_forest": {Downfall: 0.6, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8037887, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.6}, "minecraft:cherry_grove": {Downfall: 0.8, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 6141935, WaterFogColor: 6141935}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:cold_ocean": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 4020182, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:crimson_forest": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 3343107, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.crimson_forest.mood", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:dark_forest": {Downfall: 0.8, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7972607, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.7}, "minecraft:deep_cold_ocean": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 4020182, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:deep_dark": {Downfall: 0.4, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7907327, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.8}, "minecraft:deep_frozen_ocean": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 3750089, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:deep_lukewarm_ocean": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 4566514, WaterFogColor: 267827}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:deep_ocean": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:desert": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:dripstone_caves": {Downfall: 0.4, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7907327, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.8}, "minecraft:end_barrens": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 10518688, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 0, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 0.5}, "minecraft:end_highlands": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 10518688, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 0, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 0.5}, "minecraft:end_midlands": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 10518688, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 0, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 0.5}, "minecraft:eroded_badlands": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:flower_forest": {Downfall: 0.8, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7972607, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.7}, "minecraft:forest": {Downfall: 0.8, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7972607, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.7}, "minecraft:frozen_ocean": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8364543, WaterColor: 3750089, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0}, "minecraft:frozen_peaks": {Downfall: 0.9, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8756735, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: -0.7}, "minecraft:frozen_river": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8364543, WaterColor: 3750089, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0}, "minecraft:grove": {Downfall: 0.8, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8495359, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: -0.2}, "minecraft:ice_spikes": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8364543, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0}, "minecraft:jagged_peaks": {Downfall: 0.9, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8756735, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: -0.7}, "minecraft:jungle": {Downfall: 0.9, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7842047, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.95}, "minecraft:lukewarm_ocean": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 4566514, WaterFogColor: 267827}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:lush_caves": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:mangrove_swamp": {Downfall: 0.9, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7907327, WaterColor: 3832426, WaterFogColor: 5077600}, HasPrecipitation: true, Temperature: 0.8}, "minecraft:meadow": {Downfall: 0.8, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 937679, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:mushroom_fields": {Downfall: 1, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7842047, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.9}, "minecraft:nether_wastes": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 3344392, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.nether_wastes.mood", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:ocean": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:old_growth_birch_forest": {Downfall: 0.6, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8037887, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.6}, "minecraft:old_growth_pine_taiga": {Downfall: 0.8, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8168447, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.3}, "minecraft:old_growth_spruce_taiga": {Downfall: 0.8, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8233983, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.25}, "minecraft:plains": {Downfall: 0.4, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7907327, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.8}, "minecraft:river": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:savanna": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:savanna_plateau": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:small_end_islands": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 10518688, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 0, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 0.5}, "minecraft:snowy_beach": {Downfall: 0.3, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8364543, WaterColor: 4020182, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.05}, "minecraft:snowy_plains": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8364543, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0}, "minecraft:snowy_slopes": {Downfall: 0.9, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8560639, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: -0.3}, "minecraft:snowy_taiga": {Downfall: 0.4, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8625919, WaterColor: 4020182, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: -0.5}, "minecraft:soul_sand_valley": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 1787717, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.soul_sand_valley.mood", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:sparse_jungle": {Downfall: 0.8, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7842047, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.95}, "minecraft:stony_peaks": {Downfall: 0.3, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7776511, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 1}, "minecraft:stony_shore": {Downfall: 0.3, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8233727, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.2}, "minecraft:sunflower_plains": {Downfall: 0.4, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7907327, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.8}, "minecraft:swamp": {Downfall: 0.9, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7907327, WaterColor: 6388580, WaterFogColor: 2302743}, HasPrecipitation: true, Temperature: 0.8}, "minecraft:taiga": {Downfall: 0.8, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8233983, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.25}, "minecraft:the_end": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 10518688, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 0, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 0.5}, "minecraft:the_void": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 0.5}, "minecraft:warm_ocean": {Downfall: 0.5, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8103167, WaterColor: 4445678, WaterFogColor: 270131}, HasPrecipitation: true, Temperature: 0.5}, "minecraft:warped_forest": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 1705242, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.warped_forest.mood", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:windswept_forest": {Downfall: 0.3, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8233727, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.2}, "minecraft:windswept_gravelly_hills": {Downfall: 0.3, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8233727, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.2}, "minecraft:windswept_hills": {Downfall: 0.3, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 8233727, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: true, Temperature: 0.2}, "minecraft:windswept_savanna": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}, "minecraft:wooded_badlands": {Downfall: 0, Effects: struct { + FogColor int32 "nbt:\"fog_color\"" + FoliageColor int32 "nbt:\"foliage_color,omitempty\"" + GrassColor int32 "nbt:\"grass_color,omitempty\"" + MoodSound struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" + } "nbt:\"mood_sound\"" + Music struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" + } "nbt:\"music,omitempty\"" + SkyColor int32 "nbt:\"sky_color\"" + WaterColor int32 "nbt:\"water_color\"" + WaterFogColor int32 "nbt:\"water_fog_color\"" +}{FogColor: 12638463, FoliageColor: 0, GrassColor: 0, MoodSound: struct { + BlockSearchExtent int32 "nbt:\"block_search_extent\"" + Offset float64 "nbt:\"offset\"" + Sound string "nbt:\"sound\"" + TickDelay int32 "nbt:\"tick_delay\"" +}{BlockSearchExtent: 8, Offset: 2, Sound: "minecraft:ambient.cave", TickDelay: 6000}, Music: struct { + MaxDelay int32 "nbt:\"max_delay\"" + MinDelay int32 "nbt:\"min_delay\"" + ReplaceCurrentMusic bool "nbt:\"replace_current_music\"" + Sound string "nbt:\"sound\"" +}{MaxDelay: 0, MinDelay: 0, ReplaceCurrentMusic: false, Sound: ""}, SkyColor: 7254527, WaterColor: 4159204, WaterFogColor: 329011}, HasPrecipitation: false, Temperature: 2}}} diff --git a/net/registry/registry.go b/net/registry/registry.go index 25db483..e681a47 100644 --- a/net/registry/registry.go +++ b/net/registry/registry.go @@ -2,12 +2,9 @@ package registry import ( _ "embed" - "reflect" ) -// This packet contains registries that are sent to the client. Because of the way Go maps aren't ordered, sending a registry data packet will set its Indexes field to the order in which its entries were encoded, which can then be used to get registry ids - -var RegistryMap = make(map[string]any) +// This packet contains registries that are sent to the client. Because Go maps aren't ordered, sending a registry data packet will set its Indexes field to the order in which its entries were encoded, which can then be used to get registry ids type ChatType struct { Chat struct { @@ -71,7 +68,7 @@ type Dimension struct { } `nbt:"monster_spawn_light_level"` } -type registries struct { +/*type registries struct { BannerPattern map[string]struct { AssetId string `nbt:"asset_id"` TranslationKey string `nbt:"translation_key"` @@ -409,11 +406,14 @@ type registries struct { HasPrecipitation bool `nbt:"has_precipitation"` Temperature float32 `nbt:"temperature"` } `nbt:"minecraft:worldgen/biome"` -} +}*/ -func init() { +/*func init() { v := reflect.ValueOf(Registries) for i := 0; i < v.NumField(); i++ { RegistryMap[v.Type().Field(i).Tag.Get("nbt")] = v.Field(i).Interface() } + + os.WriteFile("d.go", fmt.Appendf(nil, "package registry\n\nvar Registries = %#v", RegistryMap), 0755) } +*/ diff --git a/server/world/block/blockstates/dec.go b/server/world/block/blockstates/dec.go index b2056f5..55f8940 100644 --- a/server/world/block/blockstates/dec.go +++ b/server/world/block/blockstates/dec.go @@ -51,7 +51,7 @@ func ReadBlock(f io.ReaderAt, loc BlockLocation) (Block, error) { blockStates[i].Id = blockStateId blockStates[i].Properties = make(map[string]string, propertyCount) - for i := 0; i < int(propertyCount); i++ { + for j := 0; j < int(propertyCount); j++ { propertyName, err := readString(maxxer, stringlen) if err != nil { return blockStates, nil @@ -79,11 +79,14 @@ func ReadHeader(f io.Reader) (map[string]BlockLocation, error) { return nil, fmt.Errorf("invalid magic header") } - var blockCount int32 - if err := binary.Read(f, binary.BigEndian, &blockCount); err != nil { + var locations_tmp [8]byte + + if _, err := f.Read(locations_tmp[:4]); err != nil { return nil, err } + blockCount := int32(locations_tmp[0])<<24 | int32(locations_tmp[1])<<16 | int32(locations_tmp[2])<<8 | int32(locations_tmp[3]) + var locations = make(map[string]BlockLocation, blockCount) var strlen = make([]byte, 1) @@ -94,9 +97,12 @@ func ReadHeader(f io.Reader) (map[string]BlockLocation, error) { } var location BlockLocation - if err := binary.Read(f, binary.BigEndian, location); err != nil { + + if _, err := f.Read(locations_tmp[:]); err != nil { return nil, err } + location.Offset = int32(locations_tmp[0])<<24 | int32(locations_tmp[1])<<16 | int32(locations_tmp[2])<<8 | int32(locations_tmp[3]) + location.Size = int32(locations_tmp[4])<<24 | int32(locations_tmp[5])<<16 | int32(locations_tmp[6])<<8 | int32(locations_tmp[7]) locations[name] = location } diff --git a/server/world/block/blockstates/enc.go b/server/world/block/blockstates/enc.go index 58e9058..1c1845f 100644 --- a/server/world/block/blockstates/enc.go +++ b/server/world/block/blockstates/enc.go @@ -1 +1,108 @@ package blockstates + +import ( + "bytes" + "encoding/binary" + "io" + "os" + "unsafe" + + "github.com/zeppelinmc/zeppelin/log" +) + +func Encode(f *os.File, blocks map[string]Block) error { + if _, err := f.Write(magic[:]); err != nil { + return err + } + + var buf = new(bytes.Buffer) + + var locations = make(map[string]BlockLocation, len(blocks)) + + for name, block := range blocks { + var loc = BlockLocation{Offset: int32(buf.Len())} + + if err := binary.Write(buf, binary.BigEndian, uint16(len(block))); err != nil { + return err + } + + for _, state := range block { + if err := binary.Write(buf, binary.BigEndian, state.Id); err != nil { + return err + } + if err := buf.WriteByte(byte(len(state.Properties))); err != nil { + return err + } + for name, value := range state.Properties { + if err := writeString(buf, name); err != nil { + return err + } + if err := writeString(buf, value); err != nil { + return err + } + } + } + + loc.Size = int32(buf.Len()) - loc.Offset + + if name == "minecraft:stone" { + log.Println(loc.Offset, loc.Size, buf.Bytes()[loc.Offset:loc.Offset+loc.Size]) + } + + locations[name] = loc + } + + i32 := calcheaderlen(locations) + + for i, loc := range locations { + loc.Offset += i32 + locations[i] = loc + } + + _, err := writeLocations(f, locations) + if err != nil { + return err + } + + _, err = buf.WriteTo(f) + + return err +} + +func calcheaderlen(loc map[string]BlockLocation) int32 { + i := 8 + + for name := range loc { + i += 1 + len(name) + 8 + } + + return int32(i) +} + +func writeLocations(f io.Writer, locs map[string]BlockLocation) (i int, err error) { + if err := binary.Write(f, binary.BigEndian, int32(len(locs))); err != nil { + return i, err + } + i += 4 + for name, loc := range locs { + if err := writeString(f, name); err != nil { + return i, err + } + i += 1 + len(name) + if err := binary.Write(f, binary.BigEndian, loc); err != nil { + return i, err + } + i += 8 + } + + return i, nil +} + +func writeString(f io.Writer, str string) error { + if _, err := f.Write([]byte{byte(len(str))}); err != nil { + return err + } + _, err := f.Write(unsafe.Slice(unsafe.StringData(str), len(str))) + + return err +} diff --git a/server/world/chunk/section/blockRegister.go b/server/world/chunk/section/blockRegister.go index e17e0ee..059b0cc 100644 --- a/server/world/chunk/section/blockRegister.go +++ b/server/world/chunk/section/blockRegister.go @@ -2,61 +2,20 @@ package section import ( _ "embed" + "os" - "github.com/aimjel/minecraft/nbt" + "github.com/zeppelinmc/zeppelin/server/world/block/blockstates" "github.com/zeppelinmc/zeppelin/util" ) -type blockState struct { - Id int32 `json:"id"` - Properties map[string]string `json:"properties"` -} - -type blockInfo struct { - States []blockState `json:"states"` -} - -var blocks = make(map[string]blockInfo) +var blocks = make(map[string]blockstates.Block) -//go:embed data/blocks.nbt -var blockData []byte - -//var blockBuf = bytes.NewReader(blockData) +var blockFile *os.File +var header map[string]blockstates.BlockLocation func init() { - /*rd := nbt.NewStaticReader(blockBuf) - // Read the compound root type id and name - _, _, _ = rd.ReadRoot(true) - // reuse the compound reader struct - var compoundReader nbt.CompoundReader - - for { - // read a type id (Compound), name from the reader. The name is a block name in this example - name, err, end := rd.Compound(&compoundReader) - if end { - break - } - if err != nil { - return - } - - // Read all the fields from this compound, "states" - list - func(int32,nbt.ListReader) - if err := compoundReader.ReadAll(func(len int32, rd nbt.ListReader) { - states := make([]blockState, len) - for i := int32(0); i < len; i++ { - states[i].Properties = make(map[string]string) - // read a type id (compound) and read the specified values from it, Id: string, Properties: map[string]string - rd.Read([]any{&states[i].Id, states[i].Properties}) - - } - blocks[name] = blockInfo{ - States: states, - } - }); err != nil { - return - } - }*/ - nbt.Unmarshal(blockData, &blocks) + blockFile, _ = os.Open("./blockstates") + header, _ = blockstates.ReadHeader(blockFile) } var registeredBlocks = make(map[string]Block) @@ -78,9 +37,14 @@ func GetBlock(name string) Block { // returns the block state id for this block func BlockStateId(b Block) (id int32, ok bool) { name, props := b.Encode() - block := blocks[name] + block, ok := blocks[name] + + if !ok { + block, _ = blockstates.ReadBlock(blockFile, header[name]) + blocks[name] = block + } - for _, state := range block.States { + for _, state := range block { if util.MapEqual(props, state.Properties) { return state.Id, true } diff --git a/server/world/chunk/section/data/blocks.nbt b/server/world/chunk/section/data/blocks.nbt deleted file mode 100644 index 67562ca..0000000 Binary files a/server/world/chunk/section/data/blocks.nbt and /dev/null differ diff --git a/server/world/chunk/section/embed.go_todo b/server/world/chunk/section/embed.go_todo deleted file mode 100644 index a2122d5..0000000 --- a/server/world/chunk/section/embed.go_todo +++ /dev/null @@ -1,3 +0,0 @@ -package section - -var blocks = map[string]{"minecraft:acacia_button": {States: []{{Id: 8707, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 8708, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 8709, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 8710, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 8711, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 8712, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 8713, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 8714, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 8715, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 8716, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 8717, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 8718, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 8719, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 8720, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 8721, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 8722, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 8723, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 8724, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 8725, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 8726, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 8727, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 8728, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 8729, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 8730, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:acacia_door": {States: []{{Id: 12014, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12015, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12016, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12017, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12018, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12019, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12020, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12021, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12022, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12023, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12024, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12025, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12026, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12027, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12028, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12029, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12030, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12031, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12032, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12033, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12034, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12035, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12036, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12037, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12038, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12039, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12040, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12041, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12042, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12043, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12044, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12045, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12046, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12047, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12048, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12049, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12050, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12051, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12052, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12053, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12054, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12055, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12056, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12057, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12058, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12059, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12060, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12061, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12062, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12063, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12064, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12065, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12066, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12067, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12068, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12069, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12070, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12071, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12072, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12073, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12074, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12075, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12076, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12077, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:acacia_fence": {States: []{{Id: 11662, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11663, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11664, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11665, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11666, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11667, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11668, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11669, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11670, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11671, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11672, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11673, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11674, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11675, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11676, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11677, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11678, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11679, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11680, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11681, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11682, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11683, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11684, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11685, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11686, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11687, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11688, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11689, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11690, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11691, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11692, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11693, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:acacia_fence_gate": {States: []{{Id: 11406, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11407, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11408, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11409, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11410, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11411, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11412, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11413, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11414, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11415, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11416, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11417, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11418, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11419, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11420, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11421, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11422, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11423, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11424, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11425, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11426, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11427, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11428, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11429, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11430, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11431, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11432, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11433, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11434, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11435, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11436, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11437, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:acacia_hanging_sign": {States: []{{Id: 5026, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 5027, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 5028, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 5029, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 5030, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 5031, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 5032, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 5033, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 5034, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 5035, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 5036, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 5037, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 5038, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 5039, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 5040, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 5041, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 5042, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 5043, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 5044, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 5045, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 5046, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 5047, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 5048, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 5049, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 5050, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 5051, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 5052, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 5053, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 5054, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 5055, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 5056, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 5057, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 5058, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 5059, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 5060, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 5061, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 5062, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 5063, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 5064, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 5065, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 5066, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 5067, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 5068, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 5069, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 5070, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 5071, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 5072, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 5073, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 5074, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 5075, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 5076, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 5077, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 5078, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 5079, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 5080, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 5081, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 5082, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 5083, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 5084, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 5085, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 5086, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 5087, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 5088, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 5089, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:acacia_leaves": {States: []{{Id: 349, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "true"}}, {Id: 350, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "false"}}, {Id: 351, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "true"}}, {Id: 352, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "false"}}, {Id: 353, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "true"}}, {Id: 354, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "false"}}, {Id: 355, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "true"}}, {Id: 356, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "false"}}, {Id: 357, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "true"}}, {Id: 358, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "false"}}, {Id: 359, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "true"}}, {Id: 360, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "false"}}, {Id: 361, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "true"}}, {Id: 362, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "false"}}, {Id: 363, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "true"}}, {Id: 364, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "false"}}, {Id: 365, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "true"}}, {Id: 366, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "false"}}, {Id: 367, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "true"}}, {Id: 368, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "false"}}, {Id: 369, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "true"}}, {Id: 370, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "false"}}, {Id: 371, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "true"}}, {Id: 372, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "false"}}, {Id: 373, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "true"}}, {Id: 374, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "false"}}, {Id: 375, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "true"}}, {Id: 376, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "false"}}}}, "minecraft:acacia_log": {States: []{{Id: 142, Properties: map[string]string{"axis": "x"}}, {Id: 143, Properties: map[string]string{"axis": "y"}}, {Id: 144, Properties: map[string]string{"axis": "z"}}}}, "minecraft:acacia_planks": {States: []{{Id: 19, Properties: map[string]string{}}}}, "minecraft:acacia_pressure_plate": {States: []{{Id: 5724, Properties: map[string]string{"powered": "true"}}, {Id: 5725, Properties: map[string]string{"powered": "false"}}}}, "minecraft:acacia_sapling": {States: []{{Id: 33, Properties: map[string]string{"stage": "0"}}, {Id: 34, Properties: map[string]string{"stage": "1"}}}}, "minecraft:acacia_sign": {States: []{{Id: 4398, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 4399, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 4400, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 4401, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 4402, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 4403, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 4404, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 4405, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 4406, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 4407, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 4408, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 4409, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 4410, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 4411, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 4412, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 4413, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 4414, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 4415, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 4416, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 4417, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 4418, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 4419, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 4420, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 4421, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 4422, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 4423, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 4424, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 4425, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 4426, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 4427, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 4428, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 4429, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:acacia_slab": {States: []{{Id: 11186, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11187, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11188, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11189, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11190, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11191, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:acacia_stairs": {States: []{{Id: 9884, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 9885, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 9886, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9887, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9888, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9889, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9890, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9891, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9892, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9893, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9894, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 9895, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 9896, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9897, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9898, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9899, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9900, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9901, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9902, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9903, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9904, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 9905, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 9906, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9907, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9908, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9909, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9910, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9911, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9912, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9913, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9914, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 9915, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 9916, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9917, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9918, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9919, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9920, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9921, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9922, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9923, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9924, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 9925, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 9926, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9927, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9928, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9929, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9930, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9931, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9932, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9933, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9934, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 9935, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 9936, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9937, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9938, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9939, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9940, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9941, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9942, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9943, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9944, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 9945, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 9946, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9947, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9948, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9949, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9950, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9951, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9952, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9953, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9954, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 9955, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 9956, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9957, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9958, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9959, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9960, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9961, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9962, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9963, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:acacia_trapdoor": {States: []{{Id: 6217, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6218, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6219, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6220, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6221, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6222, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6223, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6224, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6225, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6226, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6227, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6228, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6229, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6230, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6231, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6232, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6233, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6234, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6235, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6236, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6237, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6238, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6239, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6240, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6241, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6242, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6243, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6244, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6245, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6246, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6247, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6248, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6249, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6250, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6251, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6252, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6253, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6254, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6255, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6256, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6257, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6258, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6259, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6260, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6261, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6262, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6263, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6264, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6265, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6266, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6267, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6268, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6269, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6270, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6271, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6272, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6273, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6274, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6275, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6276, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6277, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6278, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6279, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6280, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:acacia_wall_hanging_sign": {States: []{{Id: 5562, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5563, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5564, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5565, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5566, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5567, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5568, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5569, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:acacia_wall_sign": {States: []{{Id: 4786, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 4787, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 4788, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 4789, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 4790, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 4791, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 4792, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 4793, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:acacia_wood": {States: []{{Id: 201, Properties: map[string]string{"axis": "x"}}, {Id: 202, Properties: map[string]string{"axis": "y"}}, {Id: 203, Properties: map[string]string{"axis": "z"}}}}, "minecraft:activator_rail": {States: []{{Id: 9320, Properties: map[string]string{"powered": "true", "shape": "north_south", "waterlogged": "true"}}, {Id: 9321, Properties: map[string]string{"powered": "true", "shape": "north_south", "waterlogged": "false"}}, {Id: 9322, Properties: map[string]string{"powered": "true", "shape": "east_west", "waterlogged": "true"}}, {Id: 9323, Properties: map[string]string{"powered": "true", "shape": "east_west", "waterlogged": "false"}}, {Id: 9324, Properties: map[string]string{"powered": "true", "shape": "ascending_east", "waterlogged": "true"}}, {Id: 9325, Properties: map[string]string{"powered": "true", "shape": "ascending_east", "waterlogged": "false"}}, {Id: 9326, Properties: map[string]string{"powered": "true", "shape": "ascending_west", "waterlogged": "true"}}, {Id: 9327, Properties: map[string]string{"powered": "true", "shape": "ascending_west", "waterlogged": "false"}}, {Id: 9328, Properties: map[string]string{"powered": "true", "shape": "ascending_north", "waterlogged": "true"}}, {Id: 9329, Properties: map[string]string{"powered": "true", "shape": "ascending_north", "waterlogged": "false"}}, {Id: 9330, Properties: map[string]string{"powered": "true", "shape": "ascending_south", "waterlogged": "true"}}, {Id: 9331, Properties: map[string]string{"powered": "true", "shape": "ascending_south", "waterlogged": "false"}}, {Id: 9332, Properties: map[string]string{"powered": "false", "shape": "north_south", "waterlogged": "true"}}, {Id: 9333, Properties: map[string]string{"powered": "false", "shape": "north_south", "waterlogged": "false"}}, {Id: 9334, Properties: map[string]string{"powered": "false", "shape": "east_west", "waterlogged": "true"}}, {Id: 9335, Properties: map[string]string{"powered": "false", "shape": "east_west", "waterlogged": "false"}}, {Id: 9336, Properties: map[string]string{"powered": "false", "shape": "ascending_east", "waterlogged": "true"}}, {Id: 9337, Properties: map[string]string{"powered": "false", "shape": "ascending_east", "waterlogged": "false"}}, {Id: 9338, Properties: map[string]string{"powered": "false", "shape": "ascending_west", "waterlogged": "true"}}, {Id: 9339, Properties: map[string]string{"powered": "false", "shape": "ascending_west", "waterlogged": "false"}}, {Id: 9340, Properties: map[string]string{"powered": "false", "shape": "ascending_north", "waterlogged": "true"}}, {Id: 9341, Properties: map[string]string{"powered": "false", "shape": "ascending_north", "waterlogged": "false"}}, {Id: 9342, Properties: map[string]string{"powered": "false", "shape": "ascending_south", "waterlogged": "true"}}, {Id: 9343, Properties: map[string]string{"powered": "false", "shape": "ascending_south", "waterlogged": "false"}}}}, "minecraft:air": {States: []{{Id: 0, Properties: map[string]string{}}}}, "minecraft:allium": {States: []{{Id: 2079, Properties: map[string]string{}}}}, "minecraft:amethyst_block": {States: []{{Id: 21031, Properties: map[string]string{}}}}, "minecraft:amethyst_cluster": {States: []{{Id: 21033, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 21034, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 21035, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 21036, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}, {Id: 21037, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 21038, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 21039, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 21040, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 21041, Properties: map[string]string{"facing": "up", "waterlogged": "true"}}, {Id: 21042, Properties: map[string]string{"facing": "up", "waterlogged": "false"}}, {Id: 21043, Properties: map[string]string{"facing": "down", "waterlogged": "true"}}, {Id: 21044, Properties: map[string]string{"facing": "down", "waterlogged": "false"}}}}, "minecraft:ancient_debris": {States: []{{Id: 19448, Properties: map[string]string{}}}}, "minecraft:andesite": {States: []{{Id: 6, Properties: map[string]string{}}}}, "minecraft:andesite_slab": {States: []{{Id: 14136, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14137, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14138, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14139, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14140, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14141, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:andesite_stairs": {States: []{{Id: 13762, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13763, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13764, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13765, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13766, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13767, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13768, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13769, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13770, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13771, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13772, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13773, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13774, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13775, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13776, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13777, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13778, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13779, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13780, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13781, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13782, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13783, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13784, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13785, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13786, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13787, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13788, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13789, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13790, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13791, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13792, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13793, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13794, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13795, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13796, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13797, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13798, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13799, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13800, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13801, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13802, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13803, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13804, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13805, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13806, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13807, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13808, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13809, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13810, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13811, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13812, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13813, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13814, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13815, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13816, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13817, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13818, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13819, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13820, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13821, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13822, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13823, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13824, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13825, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13826, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13827, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13828, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13829, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13830, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13831, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13832, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13833, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13834, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13835, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13836, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13837, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13838, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13839, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13840, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13841, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:andesite_wall": {States: []{{Id: 16752, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16753, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16754, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16755, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16756, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16757, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16758, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16759, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16760, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16761, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16762, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16763, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16764, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16765, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16766, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16767, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16768, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16769, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16770, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16771, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16772, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16773, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16774, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16775, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16776, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16777, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16778, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16779, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16780, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16781, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16782, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16783, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16784, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16785, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16786, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16787, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16788, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16789, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16790, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16791, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16792, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16793, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16794, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16795, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16796, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16797, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16798, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16799, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16800, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16801, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16802, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16803, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16804, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16805, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16806, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16807, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16808, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16809, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16810, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16811, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16812, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16813, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16814, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16815, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16816, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16817, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16818, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16819, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16820, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16821, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16822, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16823, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16824, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16825, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16826, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16827, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16828, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16829, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16830, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16831, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16832, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16833, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16834, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16835, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16836, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16837, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16838, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16839, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16840, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16841, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16842, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16843, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16844, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16845, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16846, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16847, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16848, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16849, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16850, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16851, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16852, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16853, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16854, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16855, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16856, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16857, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16858, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16859, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16860, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16861, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16862, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16863, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16864, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16865, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16866, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16867, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16868, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16869, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16870, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16871, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16872, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16873, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16874, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16875, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16876, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16877, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16878, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16879, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16880, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16881, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16882, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16883, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16884, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16885, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16886, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16887, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16888, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16889, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16890, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16891, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16892, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16893, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16894, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16895, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16896, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16897, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16898, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16899, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16900, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16901, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16902, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16903, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16904, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16905, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16906, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16907, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16908, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16909, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16910, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16911, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16912, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16913, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16914, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16915, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16916, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16917, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16918, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16919, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16920, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16921, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16922, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16923, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16924, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16925, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16926, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16927, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16928, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16929, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16930, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16931, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16932, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16933, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16934, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16935, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16936, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16937, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16938, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16939, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16940, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16941, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16942, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16943, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16944, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16945, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16946, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16947, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16948, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16949, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16950, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16951, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16952, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16953, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16954, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16955, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16956, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16957, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16958, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16959, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16960, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16961, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16962, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16963, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16964, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16965, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16966, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16967, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16968, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16969, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16970, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16971, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16972, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16973, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16974, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16975, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16976, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16977, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16978, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16979, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16980, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16981, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16982, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16983, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16984, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16985, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16986, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16987, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16988, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16989, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16990, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16991, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16992, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16993, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16994, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16995, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16996, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16997, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16998, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16999, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17000, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17001, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17002, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17003, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17004, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17005, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17006, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17007, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17008, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17009, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17010, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17011, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17012, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17013, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17014, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17015, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17016, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17017, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17018, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17019, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17020, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17021, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17022, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17023, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17024, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17025, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17026, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17027, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17028, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17029, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17030, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17031, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17032, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17033, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17034, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17035, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17036, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17037, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17038, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17039, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17040, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17041, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17042, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17043, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17044, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17045, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17046, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17047, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17048, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17049, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17050, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17051, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17052, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17053, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17054, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17055, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17056, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17057, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17058, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17059, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17060, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17061, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17062, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17063, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17064, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17065, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17066, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17067, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17068, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17069, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17070, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17071, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17072, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17073, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17074, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17075, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:anvil": {States: []{{Id: 9107, Properties: map[string]string{"facing": "north"}}, {Id: 9108, Properties: map[string]string{"facing": "south"}}, {Id: 9109, Properties: map[string]string{"facing": "west"}}, {Id: 9110, Properties: map[string]string{"facing": "east"}}}}, "minecraft:attached_melon_stem": {States: []{{Id: 6817, Properties: map[string]string{"facing": "north"}}, {Id: 6818, Properties: map[string]string{"facing": "south"}}, {Id: 6819, Properties: map[string]string{"facing": "west"}}, {Id: 6820, Properties: map[string]string{"facing": "east"}}}}, "minecraft:attached_pumpkin_stem": {States: []{{Id: 6813, Properties: map[string]string{"facing": "north"}}, {Id: 6814, Properties: map[string]string{"facing": "south"}}, {Id: 6815, Properties: map[string]string{"facing": "west"}}, {Id: 6816, Properties: map[string]string{"facing": "east"}}}}, "minecraft:azalea": {States: []{{Id: 24824, Properties: map[string]string{}}}}, "minecraft:azalea_leaves": {States: []{{Id: 461, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "true"}}, {Id: 462, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "false"}}, {Id: 463, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "true"}}, {Id: 464, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "false"}}, {Id: 465, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "true"}}, {Id: 466, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "false"}}, {Id: 467, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "true"}}, {Id: 468, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "false"}}, {Id: 469, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "true"}}, {Id: 470, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "false"}}, {Id: 471, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "true"}}, {Id: 472, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "false"}}, {Id: 473, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "true"}}, {Id: 474, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "false"}}, {Id: 475, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "true"}}, {Id: 476, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "false"}}, {Id: 477, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "true"}}, {Id: 478, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "false"}}, {Id: 479, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "true"}}, {Id: 480, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "false"}}, {Id: 481, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "true"}}, {Id: 482, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "false"}}, {Id: 483, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "true"}}, {Id: 484, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "false"}}, {Id: 485, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "true"}}, {Id: 486, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "false"}}, {Id: 487, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "true"}}, {Id: 488, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "false"}}}}, "minecraft:azure_bluet": {States: []{{Id: 2080, Properties: map[string]string{}}}}, "minecraft:bamboo": {States: []{{Id: 12945, Properties: map[string]string{"age": "0", "leaves": "none", "stage": "0"}}, {Id: 12946, Properties: map[string]string{"age": "0", "leaves": "none", "stage": "1"}}, {Id: 12947, Properties: map[string]string{"age": "0", "leaves": "small", "stage": "0"}}, {Id: 12948, Properties: map[string]string{"age": "0", "leaves": "small", "stage": "1"}}, {Id: 12949, Properties: map[string]string{"age": "0", "leaves": "large", "stage": "0"}}, {Id: 12950, Properties: map[string]string{"age": "0", "leaves": "large", "stage": "1"}}, {Id: 12951, Properties: map[string]string{"age": "1", "leaves": "none", "stage": "0"}}, {Id: 12952, Properties: map[string]string{"age": "1", "leaves": "none", "stage": "1"}}, {Id: 12953, Properties: map[string]string{"age": "1", "leaves": "small", "stage": "0"}}, {Id: 12954, Properties: map[string]string{"age": "1", "leaves": "small", "stage": "1"}}, {Id: 12955, Properties: map[string]string{"age": "1", "leaves": "large", "stage": "0"}}, {Id: 12956, Properties: map[string]string{"age": "1", "leaves": "large", "stage": "1"}}}}, "minecraft:bamboo_block": {States: []{{Id: 159, Properties: map[string]string{"axis": "x"}}, {Id: 160, Properties: map[string]string{"axis": "y"}}, {Id: 161, Properties: map[string]string{"axis": "z"}}}}, "minecraft:bamboo_button": {States: []{{Id: 8803, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 8804, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 8805, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 8806, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 8807, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 8808, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 8809, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 8810, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 8811, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 8812, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 8813, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 8814, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 8815, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 8816, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 8817, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 8818, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 8819, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 8820, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 8821, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 8822, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 8823, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 8824, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 8825, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 8826, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:bamboo_door": {States: []{{Id: 12270, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12271, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12272, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12273, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12274, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12275, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12276, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12277, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12278, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12279, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12280, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12281, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12282, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12283, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12284, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12285, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12286, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12287, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12288, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12289, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12290, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12291, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12292, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12293, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12294, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12295, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12296, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12297, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12298, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12299, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12300, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12301, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12302, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12303, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12304, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12305, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12306, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12307, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12308, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12309, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12310, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12311, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12312, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12313, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12314, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12315, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12316, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12317, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12318, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12319, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12320, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12321, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12322, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12323, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12324, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12325, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12326, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12327, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12328, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12329, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12330, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12331, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12332, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12333, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:bamboo_fence": {States: []{{Id: 11790, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11791, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11792, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11793, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11794, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11795, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11796, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11797, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11798, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11799, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11800, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11801, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11802, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11803, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11804, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11805, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11806, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11807, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11808, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11809, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11810, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11811, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11812, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11813, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11814, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11815, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11816, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11817, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11818, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11819, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11820, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11821, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:bamboo_fence_gate": {States: []{{Id: 11534, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11535, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11536, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11537, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11538, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11539, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11540, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11541, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11542, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11543, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11544, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11545, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11546, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11547, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11548, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11549, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11550, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11551, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11552, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11553, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11554, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11555, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11556, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11557, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11558, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11559, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11560, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11561, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11562, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11563, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11564, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11565, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:bamboo_hanging_sign": {States: []{{Id: 5474, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 5475, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 5476, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 5477, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 5478, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 5479, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 5480, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 5481, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 5482, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 5483, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 5484, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 5485, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 5486, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 5487, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 5488, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 5489, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 5490, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 5491, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 5492, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 5493, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 5494, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 5495, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 5496, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 5497, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 5498, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 5499, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 5500, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 5501, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 5502, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 5503, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 5504, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 5505, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 5506, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 5507, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 5508, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 5509, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 5510, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 5511, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 5512, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 5513, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 5514, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 5515, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 5516, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 5517, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 5518, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 5519, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 5520, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 5521, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 5522, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 5523, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 5524, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 5525, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 5526, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 5527, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 5528, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 5529, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 5530, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 5531, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 5532, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 5533, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 5534, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 5535, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 5536, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 5537, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:bamboo_mosaic": {States: []{{Id: 24, Properties: map[string]string{}}}}, "minecraft:bamboo_mosaic_slab": {States: []{{Id: 11216, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11217, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11218, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11219, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11220, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11221, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:bamboo_mosaic_stairs": {States: []{{Id: 10284, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10285, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10286, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10287, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10288, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10289, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10290, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10291, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10292, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10293, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10294, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10295, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10296, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10297, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10298, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10299, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10300, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10301, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10302, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10303, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10304, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10305, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10306, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10307, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10308, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10309, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10310, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10311, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10312, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10313, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10314, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10315, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10316, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10317, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10318, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10319, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10320, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10321, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10322, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10323, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10324, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10325, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10326, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10327, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10328, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10329, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10330, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10331, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10332, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10333, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10334, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10335, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10336, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10337, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10338, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10339, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10340, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10341, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10342, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10343, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10344, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10345, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10346, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10347, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10348, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10349, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10350, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10351, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10352, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10353, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10354, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10355, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10356, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10357, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10358, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10359, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10360, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10361, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10362, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10363, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:bamboo_planks": {States: []{{Id: 23, Properties: map[string]string{}}}}, "minecraft:bamboo_pressure_plate": {States: []{{Id: 5732, Properties: map[string]string{"powered": "true"}}, {Id: 5733, Properties: map[string]string{"powered": "false"}}}}, "minecraft:bamboo_sapling": {States: []{{Id: 12944, Properties: map[string]string{}}}}, "minecraft:bamboo_sign": {States: []{{Id: 4558, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 4559, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 4560, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 4561, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 4562, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 4563, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 4564, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 4565, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 4566, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 4567, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 4568, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 4569, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 4570, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 4571, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 4572, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 4573, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 4574, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 4575, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 4576, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 4577, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 4578, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 4579, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 4580, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 4581, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 4582, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 4583, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 4584, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 4585, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 4586, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 4587, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 4588, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 4589, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:bamboo_slab": {States: []{{Id: 11210, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11211, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11212, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11213, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11214, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11215, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:bamboo_stairs": {States: []{{Id: 10204, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10205, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10206, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10207, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10208, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10209, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10210, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10211, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10212, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10213, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10214, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10215, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10216, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10217, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10218, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10219, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10220, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10221, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10222, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10223, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10224, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10225, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10226, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10227, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10228, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10229, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10230, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10231, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10232, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10233, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10234, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10235, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10236, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10237, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10238, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10239, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10240, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10241, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10242, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10243, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10244, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10245, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10246, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10247, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10248, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10249, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10250, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10251, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10252, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10253, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10254, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10255, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10256, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10257, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10258, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10259, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10260, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10261, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10262, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10263, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10264, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10265, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10266, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10267, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10268, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10269, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10270, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10271, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10272, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10273, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10274, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10275, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10276, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10277, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10278, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10279, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10280, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10281, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10282, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10283, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:bamboo_trapdoor": {States: []{{Id: 6473, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6474, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6475, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6476, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6477, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6478, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6479, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6480, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6481, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6482, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6483, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6484, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6485, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6486, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6487, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6488, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6489, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6490, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6491, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6492, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6493, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6494, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6495, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6496, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6497, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6498, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6499, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6500, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6501, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6502, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6503, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6504, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6505, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6506, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6507, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6508, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6509, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6510, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6511, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6512, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6513, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6514, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6515, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6516, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6517, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6518, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6519, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6520, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6521, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6522, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6523, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6524, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6525, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6526, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6527, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6528, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6529, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6530, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6531, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6532, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6533, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6534, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6535, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6536, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:bamboo_wall_hanging_sign": {States: []{{Id: 5618, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5619, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5620, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5621, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5622, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5623, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5624, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5625, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:bamboo_wall_sign": {States: []{{Id: 4826, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 4827, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 4828, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 4829, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 4830, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 4831, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 4832, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 4833, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:barrel": {States: []{{Id: 18408, Properties: map[string]string{"facing": "north", "open": "true"}}, {Id: 18409, Properties: map[string]string{"facing": "north", "open": "false"}}, {Id: 18410, Properties: map[string]string{"facing": "east", "open": "true"}}, {Id: 18411, Properties: map[string]string{"facing": "east", "open": "false"}}, {Id: 18412, Properties: map[string]string{"facing": "south", "open": "true"}}, {Id: 18413, Properties: map[string]string{"facing": "south", "open": "false"}}, {Id: 18414, Properties: map[string]string{"facing": "west", "open": "true"}}, {Id: 18415, Properties: map[string]string{"facing": "west", "open": "false"}}, {Id: 18416, Properties: map[string]string{"facing": "up", "open": "true"}}, {Id: 18417, Properties: map[string]string{"facing": "up", "open": "false"}}, {Id: 18418, Properties: map[string]string{"facing": "down", "open": "true"}}, {Id: 18419, Properties: map[string]string{"facing": "down", "open": "false"}}}}, "minecraft:barrier": {States: []{{Id: 10365, Properties: map[string]string{"waterlogged": "true"}}, {Id: 10366, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:basalt": {States: []{{Id: 5852, Properties: map[string]string{"axis": "x"}}, {Id: 5853, Properties: map[string]string{"axis": "y"}}, {Id: 5854, Properties: map[string]string{"axis": "z"}}}}, "minecraft:beacon": {States: []{{Id: 7918, Properties: map[string]string{}}}}, "minecraft:bedrock": {States: []{{Id: 79, Properties: map[string]string{}}}}, "minecraft:bee_nest": {States: []{{Id: 19397, Properties: map[string]string{"facing": "north", "honey_level": "0"}}, {Id: 19398, Properties: map[string]string{"facing": "north", "honey_level": "1"}}, {Id: 19399, Properties: map[string]string{"facing": "north", "honey_level": "2"}}, {Id: 19400, Properties: map[string]string{"facing": "north", "honey_level": "3"}}, {Id: 19401, Properties: map[string]string{"facing": "north", "honey_level": "4"}}, {Id: 19402, Properties: map[string]string{"facing": "north", "honey_level": "5"}}, {Id: 19403, Properties: map[string]string{"facing": "south", "honey_level": "0"}}, {Id: 19404, Properties: map[string]string{"facing": "south", "honey_level": "1"}}, {Id: 19405, Properties: map[string]string{"facing": "south", "honey_level": "2"}}, {Id: 19406, Properties: map[string]string{"facing": "south", "honey_level": "3"}}, {Id: 19407, Properties: map[string]string{"facing": "south", "honey_level": "4"}}, {Id: 19408, Properties: map[string]string{"facing": "south", "honey_level": "5"}}, {Id: 19409, Properties: map[string]string{"facing": "west", "honey_level": "0"}}, {Id: 19410, Properties: map[string]string{"facing": "west", "honey_level": "1"}}, {Id: 19411, Properties: map[string]string{"facing": "west", "honey_level": "2"}}, {Id: 19412, Properties: map[string]string{"facing": "west", "honey_level": "3"}}, {Id: 19413, Properties: map[string]string{"facing": "west", "honey_level": "4"}}, {Id: 19414, Properties: map[string]string{"facing": "west", "honey_level": "5"}}, {Id: 19415, Properties: map[string]string{"facing": "east", "honey_level": "0"}}, {Id: 19416, Properties: map[string]string{"facing": "east", "honey_level": "1"}}, {Id: 19417, Properties: map[string]string{"facing": "east", "honey_level": "2"}}, {Id: 19418, Properties: map[string]string{"facing": "east", "honey_level": "3"}}, {Id: 19419, Properties: map[string]string{"facing": "east", "honey_level": "4"}}, {Id: 19420, Properties: map[string]string{"facing": "east", "honey_level": "5"}}}}, "minecraft:beehive": {States: []{{Id: 19421, Properties: map[string]string{"facing": "north", "honey_level": "0"}}, {Id: 19422, Properties: map[string]string{"facing": "north", "honey_level": "1"}}, {Id: 19423, Properties: map[string]string{"facing": "north", "honey_level": "2"}}, {Id: 19424, Properties: map[string]string{"facing": "north", "honey_level": "3"}}, {Id: 19425, Properties: map[string]string{"facing": "north", "honey_level": "4"}}, {Id: 19426, Properties: map[string]string{"facing": "north", "honey_level": "5"}}, {Id: 19427, Properties: map[string]string{"facing": "south", "honey_level": "0"}}, {Id: 19428, Properties: map[string]string{"facing": "south", "honey_level": "1"}}, {Id: 19429, Properties: map[string]string{"facing": "south", "honey_level": "2"}}, {Id: 19430, Properties: map[string]string{"facing": "south", "honey_level": "3"}}, {Id: 19431, Properties: map[string]string{"facing": "south", "honey_level": "4"}}, {Id: 19432, Properties: map[string]string{"facing": "south", "honey_level": "5"}}, {Id: 19433, Properties: map[string]string{"facing": "west", "honey_level": "0"}}, {Id: 19434, Properties: map[string]string{"facing": "west", "honey_level": "1"}}, {Id: 19435, Properties: map[string]string{"facing": "west", "honey_level": "2"}}, {Id: 19436, Properties: map[string]string{"facing": "west", "honey_level": "3"}}, {Id: 19437, Properties: map[string]string{"facing": "west", "honey_level": "4"}}, {Id: 19438, Properties: map[string]string{"facing": "west", "honey_level": "5"}}, {Id: 19439, Properties: map[string]string{"facing": "east", "honey_level": "0"}}, {Id: 19440, Properties: map[string]string{"facing": "east", "honey_level": "1"}}, {Id: 19441, Properties: map[string]string{"facing": "east", "honey_level": "2"}}, {Id: 19442, Properties: map[string]string{"facing": "east", "honey_level": "3"}}, {Id: 19443, Properties: map[string]string{"facing": "east", "honey_level": "4"}}, {Id: 19444, Properties: map[string]string{"facing": "east", "honey_level": "5"}}}}, "minecraft:beetroots": {States: []{{Id: 12509, Properties: map[string]string{"age": "0"}}, {Id: 12510, Properties: map[string]string{"age": "1"}}, {Id: 12511, Properties: map[string]string{"age": "2"}}, {Id: 12512, Properties: map[string]string{"age": "3"}}}}, "minecraft:bell": {States: []{{Id: 18471, Properties: map[string]string{"attachment": "floor", "facing": "north", "powered": "true"}}, {Id: 18472, Properties: map[string]string{"attachment": "floor", "facing": "north", "powered": "false"}}, {Id: 18473, Properties: map[string]string{"attachment": "floor", "facing": "south", "powered": "true"}}, {Id: 18474, Properties: map[string]string{"attachment": "floor", "facing": "south", "powered": "false"}}, {Id: 18475, Properties: map[string]string{"attachment": "floor", "facing": "west", "powered": "true"}}, {Id: 18476, Properties: map[string]string{"attachment": "floor", "facing": "west", "powered": "false"}}, {Id: 18477, Properties: map[string]string{"attachment": "floor", "facing": "east", "powered": "true"}}, {Id: 18478, Properties: map[string]string{"attachment": "floor", "facing": "east", "powered": "false"}}, {Id: 18479, Properties: map[string]string{"attachment": "ceiling", "facing": "north", "powered": "true"}}, {Id: 18480, Properties: map[string]string{"attachment": "ceiling", "facing": "north", "powered": "false"}}, {Id: 18481, Properties: map[string]string{"attachment": "ceiling", "facing": "south", "powered": "true"}}, {Id: 18482, Properties: map[string]string{"attachment": "ceiling", "facing": "south", "powered": "false"}}, {Id: 18483, Properties: map[string]string{"attachment": "ceiling", "facing": "west", "powered": "true"}}, {Id: 18484, Properties: map[string]string{"attachment": "ceiling", "facing": "west", "powered": "false"}}, {Id: 18485, Properties: map[string]string{"attachment": "ceiling", "facing": "east", "powered": "true"}}, {Id: 18486, Properties: map[string]string{"attachment": "ceiling", "facing": "east", "powered": "false"}}, {Id: 18487, Properties: map[string]string{"attachment": "single_wall", "facing": "north", "powered": "true"}}, {Id: 18488, Properties: map[string]string{"attachment": "single_wall", "facing": "north", "powered": "false"}}, {Id: 18489, Properties: map[string]string{"attachment": "single_wall", "facing": "south", "powered": "true"}}, {Id: 18490, Properties: map[string]string{"attachment": "single_wall", "facing": "south", "powered": "false"}}, {Id: 18491, Properties: map[string]string{"attachment": "single_wall", "facing": "west", "powered": "true"}}, {Id: 18492, Properties: map[string]string{"attachment": "single_wall", "facing": "west", "powered": "false"}}, {Id: 18493, Properties: map[string]string{"attachment": "single_wall", "facing": "east", "powered": "true"}}, {Id: 18494, Properties: map[string]string{"attachment": "single_wall", "facing": "east", "powered": "false"}}, {Id: 18495, Properties: map[string]string{"attachment": "double_wall", "facing": "north", "powered": "true"}}, {Id: 18496, Properties: map[string]string{"attachment": "double_wall", "facing": "north", "powered": "false"}}, {Id: 18497, Properties: map[string]string{"attachment": "double_wall", "facing": "south", "powered": "true"}}, {Id: 18498, Properties: map[string]string{"attachment": "double_wall", "facing": "south", "powered": "false"}}, {Id: 18499, Properties: map[string]string{"attachment": "double_wall", "facing": "west", "powered": "true"}}, {Id: 18500, Properties: map[string]string{"attachment": "double_wall", "facing": "west", "powered": "false"}}, {Id: 18501, Properties: map[string]string{"attachment": "double_wall", "facing": "east", "powered": "true"}}, {Id: 18502, Properties: map[string]string{"attachment": "double_wall", "facing": "east", "powered": "false"}}}}, "minecraft:big_dripleaf": {States: []{{Id: 24844, Properties: map[string]string{"facing": "north", "tilt": "none", "waterlogged": "true"}}, {Id: 24845, Properties: map[string]string{"facing": "north", "tilt": "none", "waterlogged": "false"}}, {Id: 24846, Properties: map[string]string{"facing": "north", "tilt": "unstable", "waterlogged": "true"}}, {Id: 24847, Properties: map[string]string{"facing": "north", "tilt": "unstable", "waterlogged": "false"}}, {Id: 24848, Properties: map[string]string{"facing": "north", "tilt": "partial", "waterlogged": "true"}}, {Id: 24849, Properties: map[string]string{"facing": "north", "tilt": "partial", "waterlogged": "false"}}, {Id: 24850, Properties: map[string]string{"facing": "north", "tilt": "full", "waterlogged": "true"}}, {Id: 24851, Properties: map[string]string{"facing": "north", "tilt": "full", "waterlogged": "false"}}, {Id: 24852, Properties: map[string]string{"facing": "south", "tilt": "none", "waterlogged": "true"}}, {Id: 24853, Properties: map[string]string{"facing": "south", "tilt": "none", "waterlogged": "false"}}, {Id: 24854, Properties: map[string]string{"facing": "south", "tilt": "unstable", "waterlogged": "true"}}, {Id: 24855, Properties: map[string]string{"facing": "south", "tilt": "unstable", "waterlogged": "false"}}, {Id: 24856, Properties: map[string]string{"facing": "south", "tilt": "partial", "waterlogged": "true"}}, {Id: 24857, Properties: map[string]string{"facing": "south", "tilt": "partial", "waterlogged": "false"}}, {Id: 24858, Properties: map[string]string{"facing": "south", "tilt": "full", "waterlogged": "true"}}, {Id: 24859, Properties: map[string]string{"facing": "south", "tilt": "full", "waterlogged": "false"}}, {Id: 24860, Properties: map[string]string{"facing": "west", "tilt": "none", "waterlogged": "true"}}, {Id: 24861, Properties: map[string]string{"facing": "west", "tilt": "none", "waterlogged": "false"}}, {Id: 24862, Properties: map[string]string{"facing": "west", "tilt": "unstable", "waterlogged": "true"}}, {Id: 24863, Properties: map[string]string{"facing": "west", "tilt": "unstable", "waterlogged": "false"}}, {Id: 24864, Properties: map[string]string{"facing": "west", "tilt": "partial", "waterlogged": "true"}}, {Id: 24865, Properties: map[string]string{"facing": "west", "tilt": "partial", "waterlogged": "false"}}, {Id: 24866, Properties: map[string]string{"facing": "west", "tilt": "full", "waterlogged": "true"}}, {Id: 24867, Properties: map[string]string{"facing": "west", "tilt": "full", "waterlogged": "false"}}, {Id: 24868, Properties: map[string]string{"facing": "east", "tilt": "none", "waterlogged": "true"}}, {Id: 24869, Properties: map[string]string{"facing": "east", "tilt": "none", "waterlogged": "false"}}, {Id: 24870, Properties: map[string]string{"facing": "east", "tilt": "unstable", "waterlogged": "true"}}, {Id: 24871, Properties: map[string]string{"facing": "east", "tilt": "unstable", "waterlogged": "false"}}, {Id: 24872, Properties: map[string]string{"facing": "east", "tilt": "partial", "waterlogged": "true"}}, {Id: 24873, Properties: map[string]string{"facing": "east", "tilt": "partial", "waterlogged": "false"}}, {Id: 24874, Properties: map[string]string{"facing": "east", "tilt": "full", "waterlogged": "true"}}, {Id: 24875, Properties: map[string]string{"facing": "east", "tilt": "full", "waterlogged": "false"}}}}, "minecraft:big_dripleaf_stem": {States: []{{Id: 24876, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 24877, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 24878, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 24879, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 24880, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 24881, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 24882, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 24883, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:birch_button": {States: []{{Id: 8659, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 8660, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 8661, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 8662, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 8663, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 8664, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 8665, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 8666, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 8667, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 8668, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 8669, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 8670, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 8671, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 8672, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 8673, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 8674, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 8675, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 8676, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 8677, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 8678, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 8679, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 8680, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 8681, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 8682, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:birch_door": {States: []{{Id: 11886, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11887, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11888, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11889, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11890, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11891, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11892, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11893, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11894, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11895, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11896, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11897, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11898, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11899, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11900, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11901, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11902, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11903, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11904, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11905, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11906, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11907, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11908, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11909, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11910, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11911, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11912, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11913, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11914, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11915, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11916, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11917, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11918, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11919, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11920, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11921, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11922, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11923, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11924, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11925, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11926, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11927, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11928, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11929, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11930, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11931, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11932, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11933, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11934, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11935, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11936, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11937, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11938, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11939, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11940, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11941, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11942, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11943, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11944, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11945, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11946, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11947, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11948, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11949, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:birch_fence": {States: []{{Id: 11598, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11599, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11600, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11601, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11602, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11603, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11604, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11605, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11606, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11607, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11608, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11609, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11610, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11611, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11612, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11613, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11614, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11615, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11616, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11617, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11618, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11619, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11620, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11621, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11622, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11623, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11624, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11625, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11626, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11627, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11628, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11629, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:birch_fence_gate": {States: []{{Id: 11342, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11343, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11344, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11345, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11346, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11347, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11348, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11349, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11350, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11351, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11352, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11353, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11354, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11355, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11356, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11357, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11358, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11359, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11360, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11361, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11362, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11363, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11364, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11365, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11366, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11367, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11368, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11369, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11370, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11371, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11372, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11373, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:birch_hanging_sign": {States: []{{Id: 4962, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 4963, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 4964, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 4965, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 4966, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 4967, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 4968, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 4969, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 4970, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 4971, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 4972, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 4973, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 4974, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 4975, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 4976, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 4977, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 4978, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 4979, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 4980, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 4981, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 4982, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 4983, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 4984, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 4985, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 4986, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 4987, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 4988, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 4989, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 4990, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 4991, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 4992, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 4993, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 4994, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 4995, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 4996, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 4997, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 4998, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 4999, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 5000, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 5001, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 5002, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 5003, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 5004, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 5005, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 5006, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 5007, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 5008, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 5009, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 5010, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 5011, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 5012, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 5013, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 5014, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 5015, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 5016, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 5017, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 5018, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 5019, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 5020, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 5021, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 5022, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 5023, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 5024, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 5025, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:birch_leaves": {States: []{{Id: 293, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "true"}}, {Id: 294, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "false"}}, {Id: 295, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "true"}}, {Id: 296, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "false"}}, {Id: 297, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "true"}}, {Id: 298, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "false"}}, {Id: 299, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "true"}}, {Id: 300, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "false"}}, {Id: 301, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "true"}}, {Id: 302, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "false"}}, {Id: 303, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "true"}}, {Id: 304, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "false"}}, {Id: 305, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "true"}}, {Id: 306, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "false"}}, {Id: 307, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "true"}}, {Id: 308, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "false"}}, {Id: 309, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "true"}}, {Id: 310, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "false"}}, {Id: 311, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "true"}}, {Id: 312, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "false"}}, {Id: 313, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "true"}}, {Id: 314, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "false"}}, {Id: 315, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "true"}}, {Id: 316, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "false"}}, {Id: 317, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "true"}}, {Id: 318, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "false"}}, {Id: 319, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "true"}}, {Id: 320, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "false"}}}}, "minecraft:birch_log": {States: []{{Id: 136, Properties: map[string]string{"axis": "x"}}, {Id: 137, Properties: map[string]string{"axis": "y"}}, {Id: 138, Properties: map[string]string{"axis": "z"}}}}, "minecraft:birch_planks": {States: []{{Id: 17, Properties: map[string]string{}}}}, "minecraft:birch_pressure_plate": {States: []{{Id: 5720, Properties: map[string]string{"powered": "true"}}, {Id: 5721, Properties: map[string]string{"powered": "false"}}}}, "minecraft:birch_sapling": {States: []{{Id: 29, Properties: map[string]string{"stage": "0"}}, {Id: 30, Properties: map[string]string{"stage": "1"}}}}, "minecraft:birch_sign": {States: []{{Id: 4366, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 4367, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 4368, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 4369, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 4370, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 4371, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 4372, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 4373, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 4374, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 4375, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 4376, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 4377, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 4378, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 4379, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 4380, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 4381, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 4382, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 4383, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 4384, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 4385, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 4386, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 4387, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 4388, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 4389, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 4390, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 4391, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 4392, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 4393, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 4394, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 4395, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 4396, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 4397, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:birch_slab": {States: []{{Id: 11174, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11175, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11176, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11177, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11178, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11179, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:birch_stairs": {States: []{{Id: 7746, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7747, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7748, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7749, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7750, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7751, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7752, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7753, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7754, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7755, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7756, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7757, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7758, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7759, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7760, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7761, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7762, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7763, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7764, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7765, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7766, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7767, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7768, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7769, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7770, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7771, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7772, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7773, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7774, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7775, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7776, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7777, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7778, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7779, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7780, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7781, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7782, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7783, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7784, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7785, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7786, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7787, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7788, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7789, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7790, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7791, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7792, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7793, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7794, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7795, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7796, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7797, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7798, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7799, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7800, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7801, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7802, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7803, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7804, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7805, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7806, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7807, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7808, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7809, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7810, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7811, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7812, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7813, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7814, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7815, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7816, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7817, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7818, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7819, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7820, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7821, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7822, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7823, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7824, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7825, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:birch_trapdoor": {States: []{{Id: 6089, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6090, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6091, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6092, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6093, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6094, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6095, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6096, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6097, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6098, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6099, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6100, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6101, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6102, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6103, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6104, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6105, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6106, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6107, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6108, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6109, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6110, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6111, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6112, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6113, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6114, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6115, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6116, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6117, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6118, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6119, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6120, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6121, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6122, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6123, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6124, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6125, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6126, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6127, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6128, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6129, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6130, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6131, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6132, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6133, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6134, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6135, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6136, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6137, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6138, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6139, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6140, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6141, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6142, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6143, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6144, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6145, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6146, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6147, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6148, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6149, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6150, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6151, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6152, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:birch_wall_hanging_sign": {States: []{{Id: 5554, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5555, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5556, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5557, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5558, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5559, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5560, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5561, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:birch_wall_sign": {States: []{{Id: 4778, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 4779, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 4780, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 4781, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 4782, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 4783, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 4784, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 4785, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:birch_wood": {States: []{{Id: 195, Properties: map[string]string{"axis": "x"}}, {Id: 196, Properties: map[string]string{"axis": "y"}}, {Id: 197, Properties: map[string]string{"axis": "z"}}}}, "minecraft:black_banner": {States: []{{Id: 10999, Properties: map[string]string{"rotation": "0"}}, {Id: 11000, Properties: map[string]string{"rotation": "1"}}, {Id: 11001, Properties: map[string]string{"rotation": "2"}}, {Id: 11002, Properties: map[string]string{"rotation": "3"}}, {Id: 11003, Properties: map[string]string{"rotation": "4"}}, {Id: 11004, Properties: map[string]string{"rotation": "5"}}, {Id: 11005, Properties: map[string]string{"rotation": "6"}}, {Id: 11006, Properties: map[string]string{"rotation": "7"}}, {Id: 11007, Properties: map[string]string{"rotation": "8"}}, {Id: 11008, Properties: map[string]string{"rotation": "9"}}, {Id: 11009, Properties: map[string]string{"rotation": "10"}}, {Id: 11010, Properties: map[string]string{"rotation": "11"}}, {Id: 11011, Properties: map[string]string{"rotation": "12"}}, {Id: 11012, Properties: map[string]string{"rotation": "13"}}, {Id: 11013, Properties: map[string]string{"rotation": "14"}}, {Id: 11014, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:black_bed": {States: []{{Id: 1928, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1929, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1930, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1931, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1932, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1933, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1934, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1935, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1936, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1937, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1938, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1939, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1940, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1941, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1942, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1943, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:black_candle": {States: []{{Id: 20981, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20982, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20983, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20984, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20985, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20986, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20987, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20988, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20989, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20990, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20991, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20992, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20993, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20994, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20995, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20996, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:black_candle_cake": {States: []{{Id: 21029, Properties: map[string]string{"lit": "true"}}, {Id: 21030, Properties: map[string]string{"lit": "false"}}}}, "minecraft:black_carpet": {States: []{{Id: 10743, Properties: map[string]string{}}}}, "minecraft:black_concrete": {States: []{{Id: 12743, Properties: map[string]string{}}}}, "minecraft:black_concrete_powder": {States: []{{Id: 12759, Properties: map[string]string{}}}}, "minecraft:black_glazed_terracotta": {States: []{{Id: 12724, Properties: map[string]string{"facing": "north"}}, {Id: 12725, Properties: map[string]string{"facing": "south"}}, {Id: 12726, Properties: map[string]string{"facing": "west"}}, {Id: 12727, Properties: map[string]string{"facing": "east"}}}}, "minecraft:black_shulker_box": {States: []{{Id: 12658, Properties: map[string]string{"facing": "north"}}, {Id: 12659, Properties: map[string]string{"facing": "east"}}, {Id: 12660, Properties: map[string]string{"facing": "south"}}, {Id: 12661, Properties: map[string]string{"facing": "west"}}, {Id: 12662, Properties: map[string]string{"facing": "up"}}, {Id: 12663, Properties: map[string]string{"facing": "down"}}}}, "minecraft:black_stained_glass": {States: []{{Id: 5960, Properties: map[string]string{}}}}, "minecraft:black_stained_glass_pane": {States: []{{Id: 9852, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9853, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9854, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9855, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9856, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9857, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9858, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9859, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9860, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9861, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9862, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9863, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9864, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9865, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9866, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9867, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9868, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9869, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9870, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9871, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9872, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9873, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9874, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9875, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9876, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9877, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9878, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9879, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9880, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9881, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9882, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9883, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:black_terracotta": {States: []{{Id: 9371, Properties: map[string]string{}}}}, "minecraft:black_wall_banner": {States: []{{Id: 11075, Properties: map[string]string{"facing": "north"}}, {Id: 11076, Properties: map[string]string{"facing": "south"}}, {Id: 11077, Properties: map[string]string{"facing": "west"}}, {Id: 11078, Properties: map[string]string{"facing": "east"}}}}, "minecraft:black_wool": {States: []{{Id: 2062, Properties: map[string]string{}}}}, "minecraft:blackstone": {States: []{{Id: 19460, Properties: map[string]string{}}}}, "minecraft:blackstone_slab": {States: []{{Id: 19865, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 19866, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 19867, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 19868, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 19869, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 19870, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:blackstone_stairs": {States: []{{Id: 19461, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19462, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19463, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19464, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19465, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19466, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19467, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19468, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19469, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19470, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19471, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19472, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19473, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19474, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19475, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19476, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19477, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19478, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19479, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19480, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19481, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19482, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19483, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19484, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19485, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19486, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19487, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19488, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19489, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19490, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19491, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19492, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19493, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19494, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19495, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19496, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19497, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19498, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19499, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19500, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19501, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19502, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19503, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19504, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19505, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19506, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19507, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19508, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19509, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19510, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19511, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19512, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19513, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19514, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19515, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19516, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19517, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19518, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19519, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19520, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19521, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19522, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19523, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19524, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19525, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19526, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19527, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19528, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19529, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19530, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19531, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19532, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19533, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19534, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19535, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19536, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19537, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19538, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19539, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19540, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:blackstone_wall": {States: []{{Id: 19541, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19542, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19543, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19544, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19545, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19546, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19547, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19548, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19549, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19550, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19551, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19552, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19553, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19554, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19555, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19556, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19557, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19558, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19559, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19560, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19561, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19562, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19563, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19564, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19565, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19566, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19567, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19568, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19569, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19570, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19571, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19572, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19573, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19574, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19575, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19576, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19577, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19578, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19579, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19580, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19581, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19582, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19583, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19584, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19585, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19586, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19587, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19588, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19589, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19590, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19591, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19592, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19593, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19594, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19595, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19596, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19597, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19598, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19599, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19600, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19601, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19602, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19603, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19604, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19605, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19606, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19607, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19608, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19609, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19610, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19611, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19612, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19613, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19614, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19615, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19616, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19617, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19618, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19619, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19620, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19621, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19622, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19623, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19624, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19625, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19626, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19627, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19628, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19629, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19630, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19631, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19632, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19633, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19634, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19635, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19636, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19637, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19638, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19639, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19640, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19641, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19642, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19643, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19644, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19645, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19646, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19647, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19648, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19649, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19650, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19651, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19652, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19653, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19654, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19655, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19656, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19657, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19658, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19659, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19660, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19661, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19662, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19663, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19664, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19665, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19666, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19667, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19668, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19669, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19670, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19671, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19672, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19673, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19674, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19675, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19676, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19677, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19678, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19679, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19680, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19681, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19682, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19683, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19684, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19685, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19686, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19687, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19688, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19689, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19690, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19691, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19692, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19693, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19694, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19695, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19696, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19697, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19698, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19699, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19700, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19701, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19702, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19703, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19704, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19705, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19706, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19707, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19708, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19709, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19710, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19711, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19712, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19713, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19714, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19715, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19716, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19717, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19718, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19719, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19720, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19721, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19722, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19723, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19724, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19725, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19726, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19727, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19728, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19729, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19730, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19731, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19732, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19733, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19734, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19735, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19736, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19737, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19738, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19739, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19740, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19741, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19742, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19743, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19744, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19745, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19746, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19747, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19748, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19749, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19750, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19751, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19752, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19753, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19754, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19755, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19756, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19757, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19758, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19759, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19760, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19761, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19762, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19763, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19764, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19765, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19766, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19767, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19768, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19769, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19770, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19771, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19772, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19773, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19774, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19775, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19776, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19777, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19778, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19779, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19780, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19781, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19782, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19783, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19784, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19785, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19786, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19787, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19788, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19789, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19790, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19791, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19792, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19793, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19794, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19795, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19796, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19797, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19798, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19799, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19800, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19801, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19802, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19803, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19804, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19805, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19806, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19807, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19808, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19809, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19810, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19811, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19812, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19813, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19814, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19815, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19816, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19817, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19818, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19819, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19820, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19821, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19822, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19823, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19824, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19825, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19826, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19827, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19828, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19829, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19830, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19831, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19832, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19833, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19834, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19835, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19836, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19837, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19838, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19839, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19840, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19841, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19842, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19843, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19844, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19845, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19846, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19847, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19848, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19849, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19850, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19851, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19852, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19853, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19854, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19855, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19856, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19857, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19858, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19859, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19860, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19861, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19862, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19863, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19864, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:blast_furnace": {States: []{{Id: 18428, Properties: map[string]string{"facing": "north", "lit": "true"}}, {Id: 18429, Properties: map[string]string{"facing": "north", "lit": "false"}}, {Id: 18430, Properties: map[string]string{"facing": "south", "lit": "true"}}, {Id: 18431, Properties: map[string]string{"facing": "south", "lit": "false"}}, {Id: 18432, Properties: map[string]string{"facing": "west", "lit": "true"}}, {Id: 18433, Properties: map[string]string{"facing": "west", "lit": "false"}}, {Id: 18434, Properties: map[string]string{"facing": "east", "lit": "true"}}, {Id: 18435, Properties: map[string]string{"facing": "east", "lit": "false"}}}}, "minecraft:blue_banner": {States: []{{Id: 10935, Properties: map[string]string{"rotation": "0"}}, {Id: 10936, Properties: map[string]string{"rotation": "1"}}, {Id: 10937, Properties: map[string]string{"rotation": "2"}}, {Id: 10938, Properties: map[string]string{"rotation": "3"}}, {Id: 10939, Properties: map[string]string{"rotation": "4"}}, {Id: 10940, Properties: map[string]string{"rotation": "5"}}, {Id: 10941, Properties: map[string]string{"rotation": "6"}}, {Id: 10942, Properties: map[string]string{"rotation": "7"}}, {Id: 10943, Properties: map[string]string{"rotation": "8"}}, {Id: 10944, Properties: map[string]string{"rotation": "9"}}, {Id: 10945, Properties: map[string]string{"rotation": "10"}}, {Id: 10946, Properties: map[string]string{"rotation": "11"}}, {Id: 10947, Properties: map[string]string{"rotation": "12"}}, {Id: 10948, Properties: map[string]string{"rotation": "13"}}, {Id: 10949, Properties: map[string]string{"rotation": "14"}}, {Id: 10950, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:blue_bed": {States: []{{Id: 1864, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1865, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1866, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1867, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1868, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1869, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1870, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1871, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1872, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1873, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1874, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1875, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1876, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1877, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1878, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1879, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:blue_candle": {States: []{{Id: 20917, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20918, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20919, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20920, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20921, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20922, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20923, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20924, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20925, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20926, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20927, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20928, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20929, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20930, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20931, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20932, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:blue_candle_cake": {States: []{{Id: 21021, Properties: map[string]string{"lit": "true"}}, {Id: 21022, Properties: map[string]string{"lit": "false"}}}}, "minecraft:blue_carpet": {States: []{{Id: 10739, Properties: map[string]string{}}}}, "minecraft:blue_concrete": {States: []{{Id: 12739, Properties: map[string]string{}}}}, "minecraft:blue_concrete_powder": {States: []{{Id: 12755, Properties: map[string]string{}}}}, "minecraft:blue_glazed_terracotta": {States: []{{Id: 12708, Properties: map[string]string{"facing": "north"}}, {Id: 12709, Properties: map[string]string{"facing": "south"}}, {Id: 12710, Properties: map[string]string{"facing": "west"}}, {Id: 12711, Properties: map[string]string{"facing": "east"}}}}, "minecraft:blue_ice": {States: []{{Id: 12941, Properties: map[string]string{}}}}, "minecraft:blue_orchid": {States: []{{Id: 2078, Properties: map[string]string{}}}}, "minecraft:blue_shulker_box": {States: []{{Id: 12634, Properties: map[string]string{"facing": "north"}}, {Id: 12635, Properties: map[string]string{"facing": "east"}}, {Id: 12636, Properties: map[string]string{"facing": "south"}}, {Id: 12637, Properties: map[string]string{"facing": "west"}}, {Id: 12638, Properties: map[string]string{"facing": "up"}}, {Id: 12639, Properties: map[string]string{"facing": "down"}}}}, "minecraft:blue_stained_glass": {States: []{{Id: 5956, Properties: map[string]string{}}}}, "minecraft:blue_stained_glass_pane": {States: []{{Id: 9724, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9725, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9726, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9727, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9728, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9729, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9730, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9731, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9732, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9733, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9734, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9735, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9736, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9737, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9738, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9739, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9740, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9741, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9742, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9743, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9744, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9745, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9746, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9747, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9748, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9749, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9750, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9751, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9752, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9753, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9754, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9755, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:blue_terracotta": {States: []{{Id: 9367, Properties: map[string]string{}}}}, "minecraft:blue_wall_banner": {States: []{{Id: 11059, Properties: map[string]string{"facing": "north"}}, {Id: 11060, Properties: map[string]string{"facing": "south"}}, {Id: 11061, Properties: map[string]string{"facing": "west"}}, {Id: 11062, Properties: map[string]string{"facing": "east"}}}}, "minecraft:blue_wool": {States: []{{Id: 2058, Properties: map[string]string{}}}}, "minecraft:bone_block": {States: []{{Id: 12546, Properties: map[string]string{"axis": "x"}}, {Id: 12547, Properties: map[string]string{"axis": "y"}}, {Id: 12548, Properties: map[string]string{"axis": "z"}}}}, "minecraft:bookshelf": {States: []{{Id: 2096, Properties: map[string]string{}}}}, "minecraft:brain_coral": {States: []{{Id: 12825, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12826, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:brain_coral_block": {States: []{{Id: 12809, Properties: map[string]string{}}}}, "minecraft:brain_coral_fan": {States: []{{Id: 12845, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12846, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:brain_coral_wall_fan": {States: []{{Id: 12901, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 12902, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 12903, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 12904, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 12905, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 12906, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 12907, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 12908, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:brewing_stand": {States: []{{Id: 7390, Properties: map[string]string{"has_bottle_0": "true", "has_bottle_1": "true", "has_bottle_2": "true"}}, {Id: 7391, Properties: map[string]string{"has_bottle_0": "true", "has_bottle_1": "true", "has_bottle_2": "false"}}, {Id: 7392, Properties: map[string]string{"has_bottle_0": "true", "has_bottle_1": "false", "has_bottle_2": "true"}}, {Id: 7393, Properties: map[string]string{"has_bottle_0": "true", "has_bottle_1": "false", "has_bottle_2": "false"}}, {Id: 7394, Properties: map[string]string{"has_bottle_0": "false", "has_bottle_1": "true", "has_bottle_2": "true"}}, {Id: 7395, Properties: map[string]string{"has_bottle_0": "false", "has_bottle_1": "true", "has_bottle_2": "false"}}, {Id: 7396, Properties: map[string]string{"has_bottle_0": "false", "has_bottle_1": "false", "has_bottle_2": "true"}}, {Id: 7397, Properties: map[string]string{"has_bottle_0": "false", "has_bottle_1": "false", "has_bottle_2": "false"}}}}, "minecraft:brick_slab": {States: []{{Id: 11258, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11259, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11260, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11261, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11262, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11263, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:brick_stairs": {States: []{{Id: 7029, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7030, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7031, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7032, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7033, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7034, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7035, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7036, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7037, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7038, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7039, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7040, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7041, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7042, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7043, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7044, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7045, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7046, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7047, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7048, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7049, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7050, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7051, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7052, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7053, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7054, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7055, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7056, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7057, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7058, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7059, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7060, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7061, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7062, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7063, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7064, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7065, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7066, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7067, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7068, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7069, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7070, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7071, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7072, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7073, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7074, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7075, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7076, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7077, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7078, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7079, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7080, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7081, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7082, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7083, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7084, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7085, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7086, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7087, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7088, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7089, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7090, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7091, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7092, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7093, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7094, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7095, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7096, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7097, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7098, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7099, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7100, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7101, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7102, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7103, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7104, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7105, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7106, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7107, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7108, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:brick_wall": {States: []{{Id: 14160, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14161, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14162, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14163, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14164, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14165, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14166, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14167, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14168, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14169, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14170, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14171, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14172, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14173, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14174, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14175, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14176, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14177, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14178, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14179, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14180, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14181, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14182, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14183, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14184, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14185, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14186, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14187, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14188, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14189, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14190, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14191, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14192, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14193, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14194, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14195, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14196, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14197, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14198, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14199, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14200, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14201, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14202, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14203, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14204, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14205, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14206, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14207, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14208, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14209, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14210, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14211, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14212, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14213, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14214, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14215, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14216, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14217, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14218, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14219, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14220, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14221, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14222, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14223, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14224, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14225, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14226, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14227, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14228, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14229, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14230, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14231, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14232, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14233, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14234, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14235, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14236, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14237, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14238, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14239, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14240, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14241, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14242, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14243, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14244, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14245, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14246, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14247, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14248, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14249, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14250, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14251, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14252, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14253, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14254, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14255, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14256, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14257, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14258, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14259, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14260, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14261, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14262, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14263, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14264, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14265, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14266, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14267, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14268, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14269, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14270, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14271, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14272, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14273, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14274, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14275, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14276, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14277, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14278, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14279, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14280, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14281, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14282, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14283, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14284, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14285, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14286, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14287, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14288, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14289, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14290, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14291, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14292, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14293, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14294, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14295, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14296, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14297, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14298, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14299, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14300, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14301, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14302, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14303, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14304, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14305, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14306, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14307, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14308, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14309, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14310, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14311, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14312, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14313, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14314, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14315, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14316, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14317, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14318, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14319, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14320, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14321, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14322, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14323, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14324, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14325, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14326, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14327, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14328, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14329, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14330, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14331, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14332, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14333, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14334, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14335, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14336, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14337, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14338, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14339, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14340, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14341, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14342, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14343, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14344, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14345, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14346, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14347, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14348, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14349, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14350, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14351, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14352, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14353, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14354, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14355, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14356, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14357, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14358, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14359, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14360, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14361, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14362, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14363, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14364, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14365, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14366, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14367, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14368, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14369, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14370, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14371, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14372, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14373, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14374, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14375, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14376, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14377, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14378, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14379, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14380, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14381, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14382, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14383, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14384, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14385, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14386, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14387, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14388, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14389, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14390, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14391, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14392, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14393, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14394, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14395, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14396, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14397, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14398, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14399, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14400, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14401, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14402, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14403, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14404, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14405, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14406, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14407, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14408, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14409, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14410, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14411, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14412, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14413, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14414, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14415, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14416, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14417, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14418, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14419, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14420, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14421, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14422, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14423, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14424, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14425, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14426, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14427, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14428, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14429, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14430, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14431, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14432, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14433, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14434, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14435, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14436, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14437, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14438, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14439, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14440, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14441, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14442, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14443, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14444, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14445, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14446, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14447, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14448, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14449, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14450, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14451, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14452, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14453, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14454, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14455, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14456, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14457, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14458, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14459, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14460, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14461, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14462, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14463, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14464, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14465, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14466, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14467, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14468, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14469, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14470, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14471, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14472, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14473, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14474, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14475, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14476, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14477, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14478, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14479, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14480, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14481, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14482, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14483, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:bricks": {States: []{{Id: 2093, Properties: map[string]string{}}}}, "minecraft:brown_banner": {States: []{{Id: 10951, Properties: map[string]string{"rotation": "0"}}, {Id: 10952, Properties: map[string]string{"rotation": "1"}}, {Id: 10953, Properties: map[string]string{"rotation": "2"}}, {Id: 10954, Properties: map[string]string{"rotation": "3"}}, {Id: 10955, Properties: map[string]string{"rotation": "4"}}, {Id: 10956, Properties: map[string]string{"rotation": "5"}}, {Id: 10957, Properties: map[string]string{"rotation": "6"}}, {Id: 10958, Properties: map[string]string{"rotation": "7"}}, {Id: 10959, Properties: map[string]string{"rotation": "8"}}, {Id: 10960, Properties: map[string]string{"rotation": "9"}}, {Id: 10961, Properties: map[string]string{"rotation": "10"}}, {Id: 10962, Properties: map[string]string{"rotation": "11"}}, {Id: 10963, Properties: map[string]string{"rotation": "12"}}, {Id: 10964, Properties: map[string]string{"rotation": "13"}}, {Id: 10965, Properties: map[string]string{"rotation": "14"}}, {Id: 10966, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:brown_bed": {States: []{{Id: 1880, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1881, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1882, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1883, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1884, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1885, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1886, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1887, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1888, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1889, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1890, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1891, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1892, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1893, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1894, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1895, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:brown_candle": {States: []{{Id: 20933, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20934, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20935, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20936, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20937, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20938, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20939, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20940, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20941, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20942, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20943, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20944, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20945, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20946, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20947, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20948, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:brown_candle_cake": {States: []{{Id: 21023, Properties: map[string]string{"lit": "true"}}, {Id: 21024, Properties: map[string]string{"lit": "false"}}}}, "minecraft:brown_carpet": {States: []{{Id: 10740, Properties: map[string]string{}}}}, "minecraft:brown_concrete": {States: []{{Id: 12740, Properties: map[string]string{}}}}, "minecraft:brown_concrete_powder": {States: []{{Id: 12756, Properties: map[string]string{}}}}, "minecraft:brown_glazed_terracotta": {States: []{{Id: 12712, Properties: map[string]string{"facing": "north"}}, {Id: 12713, Properties: map[string]string{"facing": "south"}}, {Id: 12714, Properties: map[string]string{"facing": "west"}}, {Id: 12715, Properties: map[string]string{"facing": "east"}}}}, "minecraft:brown_mushroom": {States: []{{Id: 2089, Properties: map[string]string{}}}}, "minecraft:brown_mushroom_block": {States: []{{Id: 6549, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6550, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6551, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6552, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6553, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6554, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6555, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6556, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6557, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6558, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6559, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6560, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6561, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6562, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6563, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6564, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 6565, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6566, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6567, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6568, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6569, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6570, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6571, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6572, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6573, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6574, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6575, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6576, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6577, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6578, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6579, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6580, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 6581, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6582, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6583, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6584, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6585, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6586, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6587, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6588, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6589, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6590, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6591, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6592, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6593, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6594, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6595, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6596, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 6597, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6598, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6599, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6600, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6601, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6602, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6603, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6604, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6605, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6606, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6607, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6608, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6609, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6610, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6611, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6612, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}}}, "minecraft:brown_shulker_box": {States: []{{Id: 12640, Properties: map[string]string{"facing": "north"}}, {Id: 12641, Properties: map[string]string{"facing": "east"}}, {Id: 12642, Properties: map[string]string{"facing": "south"}}, {Id: 12643, Properties: map[string]string{"facing": "west"}}, {Id: 12644, Properties: map[string]string{"facing": "up"}}, {Id: 12645, Properties: map[string]string{"facing": "down"}}}}, "minecraft:brown_stained_glass": {States: []{{Id: 5957, Properties: map[string]string{}}}}, "minecraft:brown_stained_glass_pane": {States: []{{Id: 9756, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9757, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9758, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9759, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9760, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9761, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9762, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9763, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9764, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9765, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9766, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9767, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9768, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9769, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9770, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9771, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9772, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9773, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9774, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9775, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9776, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9777, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9778, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9779, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9780, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9781, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9782, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9783, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9784, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9785, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9786, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9787, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:brown_terracotta": {States: []{{Id: 9368, Properties: map[string]string{}}}}, "minecraft:brown_wall_banner": {States: []{{Id: 11063, Properties: map[string]string{"facing": "north"}}, {Id: 11064, Properties: map[string]string{"facing": "south"}}, {Id: 11065, Properties: map[string]string{"facing": "west"}}, {Id: 11066, Properties: map[string]string{"facing": "east"}}}}, "minecraft:brown_wool": {States: []{{Id: 2059, Properties: map[string]string{}}}}, "minecraft:bubble_column": {States: []{{Id: 12960, Properties: map[string]string{"drag": "true"}}, {Id: 12961, Properties: map[string]string{"drag": "false"}}}}, "minecraft:bubble_coral": {States: []{{Id: 12827, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12828, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:bubble_coral_block": {States: []{{Id: 12810, Properties: map[string]string{}}}}, "minecraft:bubble_coral_fan": {States: []{{Id: 12847, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12848, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:bubble_coral_wall_fan": {States: []{{Id: 12909, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 12910, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 12911, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 12912, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 12913, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 12914, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 12915, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 12916, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:budding_amethyst": {States: []{{Id: 21032, Properties: map[string]string{}}}}, "minecraft:cactus": {States: []{{Id: 5782, Properties: map[string]string{"age": "0"}}, {Id: 5783, Properties: map[string]string{"age": "1"}}, {Id: 5784, Properties: map[string]string{"age": "2"}}, {Id: 5785, Properties: map[string]string{"age": "3"}}, {Id: 5786, Properties: map[string]string{"age": "4"}}, {Id: 5787, Properties: map[string]string{"age": "5"}}, {Id: 5788, Properties: map[string]string{"age": "6"}}, {Id: 5789, Properties: map[string]string{"age": "7"}}, {Id: 5790, Properties: map[string]string{"age": "8"}}, {Id: 5791, Properties: map[string]string{"age": "9"}}, {Id: 5792, Properties: map[string]string{"age": "10"}}, {Id: 5793, Properties: map[string]string{"age": "11"}}, {Id: 5794, Properties: map[string]string{"age": "12"}}, {Id: 5795, Properties: map[string]string{"age": "13"}}, {Id: 5796, Properties: map[string]string{"age": "14"}}, {Id: 5797, Properties: map[string]string{"age": "15"}}}}, "minecraft:cake": {States: []{{Id: 5874, Properties: map[string]string{"bites": "0"}}, {Id: 5875, Properties: map[string]string{"bites": "1"}}, {Id: 5876, Properties: map[string]string{"bites": "2"}}, {Id: 5877, Properties: map[string]string{"bites": "3"}}, {Id: 5878, Properties: map[string]string{"bites": "4"}}, {Id: 5879, Properties: map[string]string{"bites": "5"}}, {Id: 5880, Properties: map[string]string{"bites": "6"}}}}, "minecraft:calcite": {States: []{{Id: 22316, Properties: map[string]string{}}}}, "minecraft:calibrated_sculk_sensor": {States: []{{Id: 22415, Properties: map[string]string{"facing": "north", "power": "0", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22416, Properties: map[string]string{"facing": "north", "power": "0", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22417, Properties: map[string]string{"facing": "north", "power": "0", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22418, Properties: map[string]string{"facing": "north", "power": "0", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22419, Properties: map[string]string{"facing": "north", "power": "0", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22420, Properties: map[string]string{"facing": "north", "power": "0", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22421, Properties: map[string]string{"facing": "north", "power": "1", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22422, Properties: map[string]string{"facing": "north", "power": "1", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22423, Properties: map[string]string{"facing": "north", "power": "1", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22424, Properties: map[string]string{"facing": "north", "power": "1", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22425, Properties: map[string]string{"facing": "north", "power": "1", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22426, Properties: map[string]string{"facing": "north", "power": "1", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22427, Properties: map[string]string{"facing": "north", "power": "2", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22428, Properties: map[string]string{"facing": "north", "power": "2", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22429, Properties: map[string]string{"facing": "north", "power": "2", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22430, Properties: map[string]string{"facing": "north", "power": "2", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22431, Properties: map[string]string{"facing": "north", "power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22432, Properties: map[string]string{"facing": "north", "power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22433, Properties: map[string]string{"facing": "north", "power": "3", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22434, Properties: map[string]string{"facing": "north", "power": "3", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22435, Properties: map[string]string{"facing": "north", "power": "3", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22436, Properties: map[string]string{"facing": "north", "power": "3", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22437, Properties: map[string]string{"facing": "north", "power": "3", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22438, Properties: map[string]string{"facing": "north", "power": "3", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22439, Properties: map[string]string{"facing": "north", "power": "4", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22440, Properties: map[string]string{"facing": "north", "power": "4", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22441, Properties: map[string]string{"facing": "north", "power": "4", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22442, Properties: map[string]string{"facing": "north", "power": "4", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22443, Properties: map[string]string{"facing": "north", "power": "4", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22444, Properties: map[string]string{"facing": "north", "power": "4", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22445, Properties: map[string]string{"facing": "north", "power": "5", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22446, Properties: map[string]string{"facing": "north", "power": "5", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22447, Properties: map[string]string{"facing": "north", "power": "5", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22448, Properties: map[string]string{"facing": "north", "power": "5", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22449, Properties: map[string]string{"facing": "north", "power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22450, Properties: map[string]string{"facing": "north", "power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22451, Properties: map[string]string{"facing": "north", "power": "6", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22452, Properties: map[string]string{"facing": "north", "power": "6", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22453, Properties: map[string]string{"facing": "north", "power": "6", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22454, Properties: map[string]string{"facing": "north", "power": "6", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22455, Properties: map[string]string{"facing": "north", "power": "6", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22456, Properties: map[string]string{"facing": "north", "power": "6", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22457, Properties: map[string]string{"facing": "north", "power": "7", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22458, Properties: map[string]string{"facing": "north", "power": "7", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22459, Properties: map[string]string{"facing": "north", "power": "7", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22460, Properties: map[string]string{"facing": "north", "power": "7", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22461, Properties: map[string]string{"facing": "north", "power": "7", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22462, Properties: map[string]string{"facing": "north", "power": "7", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22463, Properties: map[string]string{"facing": "north", "power": "8", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22464, Properties: map[string]string{"facing": "north", "power": "8", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22465, Properties: map[string]string{"facing": "north", "power": "8", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22466, Properties: map[string]string{"facing": "north", "power": "8", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22467, Properties: map[string]string{"facing": "north", "power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22468, Properties: map[string]string{"facing": "north", "power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22469, Properties: map[string]string{"facing": "north", "power": "9", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22470, Properties: map[string]string{"facing": "north", "power": "9", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22471, Properties: map[string]string{"facing": "north", "power": "9", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22472, Properties: map[string]string{"facing": "north", "power": "9", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22473, Properties: map[string]string{"facing": "north", "power": "9", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22474, Properties: map[string]string{"facing": "north", "power": "9", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22475, Properties: map[string]string{"facing": "north", "power": "10", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22476, Properties: map[string]string{"facing": "north", "power": "10", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22477, Properties: map[string]string{"facing": "north", "power": "10", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22478, Properties: map[string]string{"facing": "north", "power": "10", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22479, Properties: map[string]string{"facing": "north", "power": "10", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22480, Properties: map[string]string{"facing": "north", "power": "10", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22481, Properties: map[string]string{"facing": "north", "power": "11", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22482, Properties: map[string]string{"facing": "north", "power": "11", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22483, Properties: map[string]string{"facing": "north", "power": "11", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22484, Properties: map[string]string{"facing": "north", "power": "11", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22485, Properties: map[string]string{"facing": "north", "power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22486, Properties: map[string]string{"facing": "north", "power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22487, Properties: map[string]string{"facing": "north", "power": "12", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22488, Properties: map[string]string{"facing": "north", "power": "12", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22489, Properties: map[string]string{"facing": "north", "power": "12", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22490, Properties: map[string]string{"facing": "north", "power": "12", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22491, Properties: map[string]string{"facing": "north", "power": "12", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22492, Properties: map[string]string{"facing": "north", "power": "12", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22493, Properties: map[string]string{"facing": "north", "power": "13", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22494, Properties: map[string]string{"facing": "north", "power": "13", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22495, Properties: map[string]string{"facing": "north", "power": "13", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22496, Properties: map[string]string{"facing": "north", "power": "13", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22497, Properties: map[string]string{"facing": "north", "power": "13", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22498, Properties: map[string]string{"facing": "north", "power": "13", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22499, Properties: map[string]string{"facing": "north", "power": "14", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22500, Properties: map[string]string{"facing": "north", "power": "14", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22501, Properties: map[string]string{"facing": "north", "power": "14", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22502, Properties: map[string]string{"facing": "north", "power": "14", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22503, Properties: map[string]string{"facing": "north", "power": "14", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22504, Properties: map[string]string{"facing": "north", "power": "14", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22505, Properties: map[string]string{"facing": "north", "power": "15", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22506, Properties: map[string]string{"facing": "north", "power": "15", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22507, Properties: map[string]string{"facing": "north", "power": "15", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22508, Properties: map[string]string{"facing": "north", "power": "15", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22509, Properties: map[string]string{"facing": "north", "power": "15", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22510, Properties: map[string]string{"facing": "north", "power": "15", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22511, Properties: map[string]string{"facing": "south", "power": "0", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22512, Properties: map[string]string{"facing": "south", "power": "0", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22513, Properties: map[string]string{"facing": "south", "power": "0", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22514, Properties: map[string]string{"facing": "south", "power": "0", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22515, Properties: map[string]string{"facing": "south", "power": "0", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22516, Properties: map[string]string{"facing": "south", "power": "0", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22517, Properties: map[string]string{"facing": "south", "power": "1", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22518, Properties: map[string]string{"facing": "south", "power": "1", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22519, Properties: map[string]string{"facing": "south", "power": "1", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22520, Properties: map[string]string{"facing": "south", "power": "1", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22521, Properties: map[string]string{"facing": "south", "power": "1", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22522, Properties: map[string]string{"facing": "south", "power": "1", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22523, Properties: map[string]string{"facing": "south", "power": "2", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22524, Properties: map[string]string{"facing": "south", "power": "2", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22525, Properties: map[string]string{"facing": "south", "power": "2", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22526, Properties: map[string]string{"facing": "south", "power": "2", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22527, Properties: map[string]string{"facing": "south", "power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22528, Properties: map[string]string{"facing": "south", "power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22529, Properties: map[string]string{"facing": "south", "power": "3", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22530, Properties: map[string]string{"facing": "south", "power": "3", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22531, Properties: map[string]string{"facing": "south", "power": "3", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22532, Properties: map[string]string{"facing": "south", "power": "3", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22533, Properties: map[string]string{"facing": "south", "power": "3", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22534, Properties: map[string]string{"facing": "south", "power": "3", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22535, Properties: map[string]string{"facing": "south", "power": "4", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22536, Properties: map[string]string{"facing": "south", "power": "4", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22537, Properties: map[string]string{"facing": "south", "power": "4", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22538, Properties: map[string]string{"facing": "south", "power": "4", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22539, Properties: map[string]string{"facing": "south", "power": "4", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22540, Properties: map[string]string{"facing": "south", "power": "4", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22541, Properties: map[string]string{"facing": "south", "power": "5", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22542, Properties: map[string]string{"facing": "south", "power": "5", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22543, Properties: map[string]string{"facing": "south", "power": "5", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22544, Properties: map[string]string{"facing": "south", "power": "5", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22545, Properties: map[string]string{"facing": "south", "power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22546, Properties: map[string]string{"facing": "south", "power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22547, Properties: map[string]string{"facing": "south", "power": "6", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22548, Properties: map[string]string{"facing": "south", "power": "6", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22549, Properties: map[string]string{"facing": "south", "power": "6", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22550, Properties: map[string]string{"facing": "south", "power": "6", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22551, Properties: map[string]string{"facing": "south", "power": "6", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22552, Properties: map[string]string{"facing": "south", "power": "6", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22553, Properties: map[string]string{"facing": "south", "power": "7", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22554, Properties: map[string]string{"facing": "south", "power": "7", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22555, Properties: map[string]string{"facing": "south", "power": "7", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22556, Properties: map[string]string{"facing": "south", "power": "7", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22557, Properties: map[string]string{"facing": "south", "power": "7", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22558, Properties: map[string]string{"facing": "south", "power": "7", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22559, Properties: map[string]string{"facing": "south", "power": "8", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22560, Properties: map[string]string{"facing": "south", "power": "8", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22561, Properties: map[string]string{"facing": "south", "power": "8", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22562, Properties: map[string]string{"facing": "south", "power": "8", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22563, Properties: map[string]string{"facing": "south", "power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22564, Properties: map[string]string{"facing": "south", "power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22565, Properties: map[string]string{"facing": "south", "power": "9", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22566, Properties: map[string]string{"facing": "south", "power": "9", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22567, Properties: map[string]string{"facing": "south", "power": "9", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22568, Properties: map[string]string{"facing": "south", "power": "9", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22569, Properties: map[string]string{"facing": "south", "power": "9", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22570, Properties: map[string]string{"facing": "south", "power": "9", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22571, Properties: map[string]string{"facing": "south", "power": "10", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22572, Properties: map[string]string{"facing": "south", "power": "10", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22573, Properties: map[string]string{"facing": "south", "power": "10", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22574, Properties: map[string]string{"facing": "south", "power": "10", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22575, Properties: map[string]string{"facing": "south", "power": "10", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22576, Properties: map[string]string{"facing": "south", "power": "10", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22577, Properties: map[string]string{"facing": "south", "power": "11", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22578, Properties: map[string]string{"facing": "south", "power": "11", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22579, Properties: map[string]string{"facing": "south", "power": "11", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22580, Properties: map[string]string{"facing": "south", "power": "11", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22581, Properties: map[string]string{"facing": "south", "power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22582, Properties: map[string]string{"facing": "south", "power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22583, Properties: map[string]string{"facing": "south", "power": "12", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22584, Properties: map[string]string{"facing": "south", "power": "12", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22585, Properties: map[string]string{"facing": "south", "power": "12", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22586, Properties: map[string]string{"facing": "south", "power": "12", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22587, Properties: map[string]string{"facing": "south", "power": "12", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22588, Properties: map[string]string{"facing": "south", "power": "12", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22589, Properties: map[string]string{"facing": "south", "power": "13", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22590, Properties: map[string]string{"facing": "south", "power": "13", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22591, Properties: map[string]string{"facing": "south", "power": "13", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22592, Properties: map[string]string{"facing": "south", "power": "13", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22593, Properties: map[string]string{"facing": "south", "power": "13", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22594, Properties: map[string]string{"facing": "south", "power": "13", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22595, Properties: map[string]string{"facing": "south", "power": "14", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22596, Properties: map[string]string{"facing": "south", "power": "14", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22597, Properties: map[string]string{"facing": "south", "power": "14", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22598, Properties: map[string]string{"facing": "south", "power": "14", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22599, Properties: map[string]string{"facing": "south", "power": "14", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22600, Properties: map[string]string{"facing": "south", "power": "14", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22601, Properties: map[string]string{"facing": "south", "power": "15", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22602, Properties: map[string]string{"facing": "south", "power": "15", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22603, Properties: map[string]string{"facing": "south", "power": "15", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22604, Properties: map[string]string{"facing": "south", "power": "15", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22605, Properties: map[string]string{"facing": "south", "power": "15", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22606, Properties: map[string]string{"facing": "south", "power": "15", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22607, Properties: map[string]string{"facing": "west", "power": "0", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22608, Properties: map[string]string{"facing": "west", "power": "0", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22609, Properties: map[string]string{"facing": "west", "power": "0", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22610, Properties: map[string]string{"facing": "west", "power": "0", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22611, Properties: map[string]string{"facing": "west", "power": "0", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22612, Properties: map[string]string{"facing": "west", "power": "0", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22613, Properties: map[string]string{"facing": "west", "power": "1", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22614, Properties: map[string]string{"facing": "west", "power": "1", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22615, Properties: map[string]string{"facing": "west", "power": "1", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22616, Properties: map[string]string{"facing": "west", "power": "1", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22617, Properties: map[string]string{"facing": "west", "power": "1", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22618, Properties: map[string]string{"facing": "west", "power": "1", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22619, Properties: map[string]string{"facing": "west", "power": "2", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22620, Properties: map[string]string{"facing": "west", "power": "2", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22621, Properties: map[string]string{"facing": "west", "power": "2", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22622, Properties: map[string]string{"facing": "west", "power": "2", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22623, Properties: map[string]string{"facing": "west", "power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22624, Properties: map[string]string{"facing": "west", "power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22625, Properties: map[string]string{"facing": "west", "power": "3", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22626, Properties: map[string]string{"facing": "west", "power": "3", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22627, Properties: map[string]string{"facing": "west", "power": "3", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22628, Properties: map[string]string{"facing": "west", "power": "3", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22629, Properties: map[string]string{"facing": "west", "power": "3", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22630, Properties: map[string]string{"facing": "west", "power": "3", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22631, Properties: map[string]string{"facing": "west", "power": "4", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22632, Properties: map[string]string{"facing": "west", "power": "4", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22633, Properties: map[string]string{"facing": "west", "power": "4", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22634, Properties: map[string]string{"facing": "west", "power": "4", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22635, Properties: map[string]string{"facing": "west", "power": "4", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22636, Properties: map[string]string{"facing": "west", "power": "4", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22637, Properties: map[string]string{"facing": "west", "power": "5", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22638, Properties: map[string]string{"facing": "west", "power": "5", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22639, Properties: map[string]string{"facing": "west", "power": "5", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22640, Properties: map[string]string{"facing": "west", "power": "5", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22641, Properties: map[string]string{"facing": "west", "power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22642, Properties: map[string]string{"facing": "west", "power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22643, Properties: map[string]string{"facing": "west", "power": "6", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22644, Properties: map[string]string{"facing": "west", "power": "6", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22645, Properties: map[string]string{"facing": "west", "power": "6", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22646, Properties: map[string]string{"facing": "west", "power": "6", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22647, Properties: map[string]string{"facing": "west", "power": "6", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22648, Properties: map[string]string{"facing": "west", "power": "6", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22649, Properties: map[string]string{"facing": "west", "power": "7", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22650, Properties: map[string]string{"facing": "west", "power": "7", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22651, Properties: map[string]string{"facing": "west", "power": "7", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22652, Properties: map[string]string{"facing": "west", "power": "7", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22653, Properties: map[string]string{"facing": "west", "power": "7", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22654, Properties: map[string]string{"facing": "west", "power": "7", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22655, Properties: map[string]string{"facing": "west", "power": "8", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22656, Properties: map[string]string{"facing": "west", "power": "8", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22657, Properties: map[string]string{"facing": "west", "power": "8", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22658, Properties: map[string]string{"facing": "west", "power": "8", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22659, Properties: map[string]string{"facing": "west", "power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22660, Properties: map[string]string{"facing": "west", "power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22661, Properties: map[string]string{"facing": "west", "power": "9", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22662, Properties: map[string]string{"facing": "west", "power": "9", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22663, Properties: map[string]string{"facing": "west", "power": "9", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22664, Properties: map[string]string{"facing": "west", "power": "9", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22665, Properties: map[string]string{"facing": "west", "power": "9", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22666, Properties: map[string]string{"facing": "west", "power": "9", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22667, Properties: map[string]string{"facing": "west", "power": "10", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22668, Properties: map[string]string{"facing": "west", "power": "10", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22669, Properties: map[string]string{"facing": "west", "power": "10", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22670, Properties: map[string]string{"facing": "west", "power": "10", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22671, Properties: map[string]string{"facing": "west", "power": "10", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22672, Properties: map[string]string{"facing": "west", "power": "10", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22673, Properties: map[string]string{"facing": "west", "power": "11", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22674, Properties: map[string]string{"facing": "west", "power": "11", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22675, Properties: map[string]string{"facing": "west", "power": "11", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22676, Properties: map[string]string{"facing": "west", "power": "11", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22677, Properties: map[string]string{"facing": "west", "power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22678, Properties: map[string]string{"facing": "west", "power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22679, Properties: map[string]string{"facing": "west", "power": "12", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22680, Properties: map[string]string{"facing": "west", "power": "12", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22681, Properties: map[string]string{"facing": "west", "power": "12", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22682, Properties: map[string]string{"facing": "west", "power": "12", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22683, Properties: map[string]string{"facing": "west", "power": "12", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22684, Properties: map[string]string{"facing": "west", "power": "12", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22685, Properties: map[string]string{"facing": "west", "power": "13", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22686, Properties: map[string]string{"facing": "west", "power": "13", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22687, Properties: map[string]string{"facing": "west", "power": "13", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22688, Properties: map[string]string{"facing": "west", "power": "13", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22689, Properties: map[string]string{"facing": "west", "power": "13", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22690, Properties: map[string]string{"facing": "west", "power": "13", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22691, Properties: map[string]string{"facing": "west", "power": "14", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22692, Properties: map[string]string{"facing": "west", "power": "14", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22693, Properties: map[string]string{"facing": "west", "power": "14", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22694, Properties: map[string]string{"facing": "west", "power": "14", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22695, Properties: map[string]string{"facing": "west", "power": "14", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22696, Properties: map[string]string{"facing": "west", "power": "14", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22697, Properties: map[string]string{"facing": "west", "power": "15", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22698, Properties: map[string]string{"facing": "west", "power": "15", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22699, Properties: map[string]string{"facing": "west", "power": "15", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22700, Properties: map[string]string{"facing": "west", "power": "15", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22701, Properties: map[string]string{"facing": "west", "power": "15", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22702, Properties: map[string]string{"facing": "west", "power": "15", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22703, Properties: map[string]string{"facing": "east", "power": "0", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22704, Properties: map[string]string{"facing": "east", "power": "0", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22705, Properties: map[string]string{"facing": "east", "power": "0", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22706, Properties: map[string]string{"facing": "east", "power": "0", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22707, Properties: map[string]string{"facing": "east", "power": "0", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22708, Properties: map[string]string{"facing": "east", "power": "0", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22709, Properties: map[string]string{"facing": "east", "power": "1", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22710, Properties: map[string]string{"facing": "east", "power": "1", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22711, Properties: map[string]string{"facing": "east", "power": "1", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22712, Properties: map[string]string{"facing": "east", "power": "1", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22713, Properties: map[string]string{"facing": "east", "power": "1", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22714, Properties: map[string]string{"facing": "east", "power": "1", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22715, Properties: map[string]string{"facing": "east", "power": "2", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22716, Properties: map[string]string{"facing": "east", "power": "2", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22717, Properties: map[string]string{"facing": "east", "power": "2", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22718, Properties: map[string]string{"facing": "east", "power": "2", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22719, Properties: map[string]string{"facing": "east", "power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22720, Properties: map[string]string{"facing": "east", "power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22721, Properties: map[string]string{"facing": "east", "power": "3", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22722, Properties: map[string]string{"facing": "east", "power": "3", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22723, Properties: map[string]string{"facing": "east", "power": "3", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22724, Properties: map[string]string{"facing": "east", "power": "3", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22725, Properties: map[string]string{"facing": "east", "power": "3", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22726, Properties: map[string]string{"facing": "east", "power": "3", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22727, Properties: map[string]string{"facing": "east", "power": "4", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22728, Properties: map[string]string{"facing": "east", "power": "4", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22729, Properties: map[string]string{"facing": "east", "power": "4", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22730, Properties: map[string]string{"facing": "east", "power": "4", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22731, Properties: map[string]string{"facing": "east", "power": "4", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22732, Properties: map[string]string{"facing": "east", "power": "4", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22733, Properties: map[string]string{"facing": "east", "power": "5", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22734, Properties: map[string]string{"facing": "east", "power": "5", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22735, Properties: map[string]string{"facing": "east", "power": "5", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22736, Properties: map[string]string{"facing": "east", "power": "5", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22737, Properties: map[string]string{"facing": "east", "power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22738, Properties: map[string]string{"facing": "east", "power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22739, Properties: map[string]string{"facing": "east", "power": "6", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22740, Properties: map[string]string{"facing": "east", "power": "6", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22741, Properties: map[string]string{"facing": "east", "power": "6", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22742, Properties: map[string]string{"facing": "east", "power": "6", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22743, Properties: map[string]string{"facing": "east", "power": "6", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22744, Properties: map[string]string{"facing": "east", "power": "6", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22745, Properties: map[string]string{"facing": "east", "power": "7", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22746, Properties: map[string]string{"facing": "east", "power": "7", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22747, Properties: map[string]string{"facing": "east", "power": "7", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22748, Properties: map[string]string{"facing": "east", "power": "7", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22749, Properties: map[string]string{"facing": "east", "power": "7", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22750, Properties: map[string]string{"facing": "east", "power": "7", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22751, Properties: map[string]string{"facing": "east", "power": "8", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22752, Properties: map[string]string{"facing": "east", "power": "8", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22753, Properties: map[string]string{"facing": "east", "power": "8", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22754, Properties: map[string]string{"facing": "east", "power": "8", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22755, Properties: map[string]string{"facing": "east", "power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22756, Properties: map[string]string{"facing": "east", "power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22757, Properties: map[string]string{"facing": "east", "power": "9", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22758, Properties: map[string]string{"facing": "east", "power": "9", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22759, Properties: map[string]string{"facing": "east", "power": "9", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22760, Properties: map[string]string{"facing": "east", "power": "9", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22761, Properties: map[string]string{"facing": "east", "power": "9", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22762, Properties: map[string]string{"facing": "east", "power": "9", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22763, Properties: map[string]string{"facing": "east", "power": "10", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22764, Properties: map[string]string{"facing": "east", "power": "10", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22765, Properties: map[string]string{"facing": "east", "power": "10", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22766, Properties: map[string]string{"facing": "east", "power": "10", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22767, Properties: map[string]string{"facing": "east", "power": "10", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22768, Properties: map[string]string{"facing": "east", "power": "10", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22769, Properties: map[string]string{"facing": "east", "power": "11", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22770, Properties: map[string]string{"facing": "east", "power": "11", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22771, Properties: map[string]string{"facing": "east", "power": "11", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22772, Properties: map[string]string{"facing": "east", "power": "11", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22773, Properties: map[string]string{"facing": "east", "power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22774, Properties: map[string]string{"facing": "east", "power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22775, Properties: map[string]string{"facing": "east", "power": "12", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22776, Properties: map[string]string{"facing": "east", "power": "12", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22777, Properties: map[string]string{"facing": "east", "power": "12", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22778, Properties: map[string]string{"facing": "east", "power": "12", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22779, Properties: map[string]string{"facing": "east", "power": "12", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22780, Properties: map[string]string{"facing": "east", "power": "12", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22781, Properties: map[string]string{"facing": "east", "power": "13", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22782, Properties: map[string]string{"facing": "east", "power": "13", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22783, Properties: map[string]string{"facing": "east", "power": "13", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22784, Properties: map[string]string{"facing": "east", "power": "13", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22785, Properties: map[string]string{"facing": "east", "power": "13", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22786, Properties: map[string]string{"facing": "east", "power": "13", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22787, Properties: map[string]string{"facing": "east", "power": "14", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22788, Properties: map[string]string{"facing": "east", "power": "14", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22789, Properties: map[string]string{"facing": "east", "power": "14", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22790, Properties: map[string]string{"facing": "east", "power": "14", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22791, Properties: map[string]string{"facing": "east", "power": "14", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22792, Properties: map[string]string{"facing": "east", "power": "14", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22793, Properties: map[string]string{"facing": "east", "power": "15", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22794, Properties: map[string]string{"facing": "east", "power": "15", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22795, Properties: map[string]string{"facing": "east", "power": "15", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22796, Properties: map[string]string{"facing": "east", "power": "15", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22797, Properties: map[string]string{"facing": "east", "power": "15", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22798, Properties: map[string]string{"facing": "east", "power": "15", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}}}, "minecraft:campfire": {States: []{{Id: 18511, Properties: map[string]string{"facing": "north", "lit": "true", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18512, Properties: map[string]string{"facing": "north", "lit": "true", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18513, Properties: map[string]string{"facing": "north", "lit": "true", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18514, Properties: map[string]string{"facing": "north", "lit": "true", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18515, Properties: map[string]string{"facing": "north", "lit": "false", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18516, Properties: map[string]string{"facing": "north", "lit": "false", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18517, Properties: map[string]string{"facing": "north", "lit": "false", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18518, Properties: map[string]string{"facing": "north", "lit": "false", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18519, Properties: map[string]string{"facing": "south", "lit": "true", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18520, Properties: map[string]string{"facing": "south", "lit": "true", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18521, Properties: map[string]string{"facing": "south", "lit": "true", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18522, Properties: map[string]string{"facing": "south", "lit": "true", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18523, Properties: map[string]string{"facing": "south", "lit": "false", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18524, Properties: map[string]string{"facing": "south", "lit": "false", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18525, Properties: map[string]string{"facing": "south", "lit": "false", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18526, Properties: map[string]string{"facing": "south", "lit": "false", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18527, Properties: map[string]string{"facing": "west", "lit": "true", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18528, Properties: map[string]string{"facing": "west", "lit": "true", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18529, Properties: map[string]string{"facing": "west", "lit": "true", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18530, Properties: map[string]string{"facing": "west", "lit": "true", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18531, Properties: map[string]string{"facing": "west", "lit": "false", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18532, Properties: map[string]string{"facing": "west", "lit": "false", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18533, Properties: map[string]string{"facing": "west", "lit": "false", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18534, Properties: map[string]string{"facing": "west", "lit": "false", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18535, Properties: map[string]string{"facing": "east", "lit": "true", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18536, Properties: map[string]string{"facing": "east", "lit": "true", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18537, Properties: map[string]string{"facing": "east", "lit": "true", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18538, Properties: map[string]string{"facing": "east", "lit": "true", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18539, Properties: map[string]string{"facing": "east", "lit": "false", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18540, Properties: map[string]string{"facing": "east", "lit": "false", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18541, Properties: map[string]string{"facing": "east", "lit": "false", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18542, Properties: map[string]string{"facing": "east", "lit": "false", "signal_fire": "false", "waterlogged": "false"}}}}, "minecraft:candle": {States: []{{Id: 20725, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20726, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20727, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20728, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20729, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20730, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20731, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20732, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20733, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20734, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20735, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20736, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20737, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20738, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20739, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20740, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:candle_cake": {States: []{{Id: 20997, Properties: map[string]string{"lit": "true"}}, {Id: 20998, Properties: map[string]string{"lit": "false"}}}}, "minecraft:carrots": {States: []{{Id: 8595, Properties: map[string]string{"age": "0"}}, {Id: 8596, Properties: map[string]string{"age": "1"}}, {Id: 8597, Properties: map[string]string{"age": "2"}}, {Id: 8598, Properties: map[string]string{"age": "3"}}, {Id: 8599, Properties: map[string]string{"age": "4"}}, {Id: 8600, Properties: map[string]string{"age": "5"}}, {Id: 8601, Properties: map[string]string{"age": "6"}}, {Id: 8602, Properties: map[string]string{"age": "7"}}}}, "minecraft:cartography_table": {States: []{{Id: 18436, Properties: map[string]string{}}}}, "minecraft:carved_pumpkin": {States: []{{Id: 5866, Properties: map[string]string{"facing": "north"}}, {Id: 5867, Properties: map[string]string{"facing": "south"}}, {Id: 5868, Properties: map[string]string{"facing": "west"}}, {Id: 5869, Properties: map[string]string{"facing": "east"}}}}, "minecraft:cauldron": {States: []{{Id: 7398, Properties: map[string]string{}}}}, "minecraft:cave_air": {States: []{{Id: 12959, Properties: map[string]string{}}}}, "minecraft:cave_vines": {States: []{{Id: 24769, Properties: map[string]string{"age": "0", "berries": "true"}}, {Id: 24770, Properties: map[string]string{"age": "0", "berries": "false"}}, {Id: 24771, Properties: map[string]string{"age": "1", "berries": "true"}}, {Id: 24772, Properties: map[string]string{"age": "1", "berries": "false"}}, {Id: 24773, Properties: map[string]string{"age": "2", "berries": "true"}}, {Id: 24774, Properties: map[string]string{"age": "2", "berries": "false"}}, {Id: 24775, Properties: map[string]string{"age": "3", "berries": "true"}}, {Id: 24776, Properties: map[string]string{"age": "3", "berries": "false"}}, {Id: 24777, Properties: map[string]string{"age": "4", "berries": "true"}}, {Id: 24778, Properties: map[string]string{"age": "4", "berries": "false"}}, {Id: 24779, Properties: map[string]string{"age": "5", "berries": "true"}}, {Id: 24780, Properties: map[string]string{"age": "5", "berries": "false"}}, {Id: 24781, Properties: map[string]string{"age": "6", "berries": "true"}}, {Id: 24782, Properties: map[string]string{"age": "6", "berries": "false"}}, {Id: 24783, Properties: map[string]string{"age": "7", "berries": "true"}}, {Id: 24784, Properties: map[string]string{"age": "7", "berries": "false"}}, {Id: 24785, Properties: map[string]string{"age": "8", "berries": "true"}}, {Id: 24786, Properties: map[string]string{"age": "8", "berries": "false"}}, {Id: 24787, Properties: map[string]string{"age": "9", "berries": "true"}}, {Id: 24788, Properties: map[string]string{"age": "9", "berries": "false"}}, {Id: 24789, Properties: map[string]string{"age": "10", "berries": "true"}}, {Id: 24790, Properties: map[string]string{"age": "10", "berries": "false"}}, {Id: 24791, Properties: map[string]string{"age": "11", "berries": "true"}}, {Id: 24792, Properties: map[string]string{"age": "11", "berries": "false"}}, {Id: 24793, Properties: map[string]string{"age": "12", "berries": "true"}}, {Id: 24794, Properties: map[string]string{"age": "12", "berries": "false"}}, {Id: 24795, Properties: map[string]string{"age": "13", "berries": "true"}}, {Id: 24796, Properties: map[string]string{"age": "13", "berries": "false"}}, {Id: 24797, Properties: map[string]string{"age": "14", "berries": "true"}}, {Id: 24798, Properties: map[string]string{"age": "14", "berries": "false"}}, {Id: 24799, Properties: map[string]string{"age": "15", "berries": "true"}}, {Id: 24800, Properties: map[string]string{"age": "15", "berries": "false"}}, {Id: 24801, Properties: map[string]string{"age": "16", "berries": "true"}}, {Id: 24802, Properties: map[string]string{"age": "16", "berries": "false"}}, {Id: 24803, Properties: map[string]string{"age": "17", "berries": "true"}}, {Id: 24804, Properties: map[string]string{"age": "17", "berries": "false"}}, {Id: 24805, Properties: map[string]string{"age": "18", "berries": "true"}}, {Id: 24806, Properties: map[string]string{"age": "18", "berries": "false"}}, {Id: 24807, Properties: map[string]string{"age": "19", "berries": "true"}}, {Id: 24808, Properties: map[string]string{"age": "19", "berries": "false"}}, {Id: 24809, Properties: map[string]string{"age": "20", "berries": "true"}}, {Id: 24810, Properties: map[string]string{"age": "20", "berries": "false"}}, {Id: 24811, Properties: map[string]string{"age": "21", "berries": "true"}}, {Id: 24812, Properties: map[string]string{"age": "21", "berries": "false"}}, {Id: 24813, Properties: map[string]string{"age": "22", "berries": "true"}}, {Id: 24814, Properties: map[string]string{"age": "22", "berries": "false"}}, {Id: 24815, Properties: map[string]string{"age": "23", "berries": "true"}}, {Id: 24816, Properties: map[string]string{"age": "23", "berries": "false"}}, {Id: 24817, Properties: map[string]string{"age": "24", "berries": "true"}}, {Id: 24818, Properties: map[string]string{"age": "24", "berries": "false"}}, {Id: 24819, Properties: map[string]string{"age": "25", "berries": "true"}}, {Id: 24820, Properties: map[string]string{"age": "25", "berries": "false"}}}}, "minecraft:cave_vines_plant": {States: []{{Id: 24821, Properties: map[string]string{"berries": "true"}}, {Id: 24822, Properties: map[string]string{"berries": "false"}}}}, "minecraft:chain": {States: []{{Id: 6773, Properties: map[string]string{"axis": "x", "waterlogged": "true"}}, {Id: 6774, Properties: map[string]string{"axis": "x", "waterlogged": "false"}}, {Id: 6775, Properties: map[string]string{"axis": "y", "waterlogged": "true"}}, {Id: 6776, Properties: map[string]string{"axis": "y", "waterlogged": "false"}}, {Id: 6777, Properties: map[string]string{"axis": "z", "waterlogged": "true"}}, {Id: 6778, Properties: map[string]string{"axis": "z", "waterlogged": "false"}}}}, "minecraft:chain_command_block": {States: []{{Id: 12527, Properties: map[string]string{"conditional": "true", "facing": "north"}}, {Id: 12528, Properties: map[string]string{"conditional": "true", "facing": "east"}}, {Id: 12529, Properties: map[string]string{"conditional": "true", "facing": "south"}}, {Id: 12530, Properties: map[string]string{"conditional": "true", "facing": "west"}}, {Id: 12531, Properties: map[string]string{"conditional": "true", "facing": "up"}}, {Id: 12532, Properties: map[string]string{"conditional": "true", "facing": "down"}}, {Id: 12533, Properties: map[string]string{"conditional": "false", "facing": "north"}}, {Id: 12534, Properties: map[string]string{"conditional": "false", "facing": "east"}}, {Id: 12535, Properties: map[string]string{"conditional": "false", "facing": "south"}}, {Id: 12536, Properties: map[string]string{"conditional": "false", "facing": "west"}}, {Id: 12537, Properties: map[string]string{"conditional": "false", "facing": "up"}}, {Id: 12538, Properties: map[string]string{"conditional": "false", "facing": "down"}}}}, "minecraft:cherry_button": {States: []{{Id: 8731, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 8732, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 8733, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 8734, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 8735, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 8736, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 8737, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 8738, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 8739, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 8740, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 8741, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 8742, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 8743, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 8744, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 8745, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 8746, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 8747, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 8748, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 8749, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 8750, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 8751, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 8752, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 8753, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 8754, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:cherry_door": {States: []{{Id: 12078, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12079, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12080, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12081, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12082, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12083, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12084, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12085, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12086, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12087, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12088, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12089, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12090, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12091, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12092, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12093, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12094, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12095, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12096, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12097, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12098, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12099, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12100, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12101, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12102, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12103, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12104, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12105, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12106, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12107, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12108, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12109, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12110, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12111, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12112, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12113, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12114, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12115, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12116, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12117, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12118, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12119, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12120, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12121, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12122, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12123, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12124, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12125, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12126, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12127, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12128, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12129, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12130, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12131, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12132, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12133, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12134, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12135, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12136, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12137, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12138, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12139, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12140, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12141, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:cherry_fence": {States: []{{Id: 11694, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11695, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11696, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11697, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11698, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11699, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11700, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11701, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11702, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11703, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11704, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11705, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11706, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11707, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11708, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11709, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11710, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11711, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11712, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11713, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11714, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11715, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11716, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11717, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11718, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11719, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11720, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11721, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11722, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11723, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11724, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11725, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:cherry_fence_gate": {States: []{{Id: 11438, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11439, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11440, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11441, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11442, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11443, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11444, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11445, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11446, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11447, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11448, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11449, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11450, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11451, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11452, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11453, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11454, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11455, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11456, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11457, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11458, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11459, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11460, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11461, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11462, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11463, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11464, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11465, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11466, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11467, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11468, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11469, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:cherry_hanging_sign": {States: []{{Id: 5090, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 5091, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 5092, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 5093, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 5094, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 5095, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 5096, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 5097, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 5098, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 5099, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 5100, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 5101, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 5102, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 5103, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 5104, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 5105, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 5106, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 5107, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 5108, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 5109, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 5110, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 5111, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 5112, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 5113, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 5114, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 5115, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 5116, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 5117, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 5118, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 5119, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 5120, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 5121, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 5122, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 5123, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 5124, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 5125, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 5126, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 5127, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 5128, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 5129, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 5130, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 5131, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 5132, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 5133, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 5134, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 5135, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 5136, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 5137, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 5138, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 5139, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 5140, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 5141, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 5142, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 5143, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 5144, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 5145, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 5146, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 5147, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 5148, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 5149, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 5150, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 5151, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 5152, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 5153, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:cherry_leaves": {States: []{{Id: 377, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "true"}}, {Id: 378, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "false"}}, {Id: 379, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "true"}}, {Id: 380, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "false"}}, {Id: 381, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "true"}}, {Id: 382, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "false"}}, {Id: 383, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "true"}}, {Id: 384, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "false"}}, {Id: 385, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "true"}}, {Id: 386, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "false"}}, {Id: 387, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "true"}}, {Id: 388, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "false"}}, {Id: 389, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "true"}}, {Id: 390, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "false"}}, {Id: 391, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "true"}}, {Id: 392, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "false"}}, {Id: 393, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "true"}}, {Id: 394, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "false"}}, {Id: 395, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "true"}}, {Id: 396, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "false"}}, {Id: 397, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "true"}}, {Id: 398, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "false"}}, {Id: 399, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "true"}}, {Id: 400, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "false"}}, {Id: 401, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "true"}}, {Id: 402, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "false"}}, {Id: 403, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "true"}}, {Id: 404, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "false"}}}}, "minecraft:cherry_log": {States: []{{Id: 145, Properties: map[string]string{"axis": "x"}}, {Id: 146, Properties: map[string]string{"axis": "y"}}, {Id: 147, Properties: map[string]string{"axis": "z"}}}}, "minecraft:cherry_planks": {States: []{{Id: 20, Properties: map[string]string{}}}}, "minecraft:cherry_pressure_plate": {States: []{{Id: 5726, Properties: map[string]string{"powered": "true"}}, {Id: 5727, Properties: map[string]string{"powered": "false"}}}}, "minecraft:cherry_sapling": {States: []{{Id: 35, Properties: map[string]string{"stage": "0"}}, {Id: 36, Properties: map[string]string{"stage": "1"}}}}, "minecraft:cherry_sign": {States: []{{Id: 4430, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 4431, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 4432, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 4433, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 4434, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 4435, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 4436, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 4437, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 4438, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 4439, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 4440, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 4441, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 4442, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 4443, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 4444, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 4445, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 4446, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 4447, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 4448, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 4449, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 4450, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 4451, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 4452, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 4453, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 4454, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 4455, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 4456, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 4457, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 4458, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 4459, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 4460, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 4461, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:cherry_slab": {States: []{{Id: 11192, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11193, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11194, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11195, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11196, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11197, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:cherry_stairs": {States: []{{Id: 9964, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 9965, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 9966, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9967, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9968, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9969, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9970, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9971, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9972, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9973, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9974, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 9975, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 9976, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9977, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9978, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9979, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9980, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9981, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9982, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9983, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9984, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 9985, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 9986, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9987, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9988, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9989, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9990, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9991, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9992, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9993, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9994, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 9995, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 9996, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9997, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9998, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9999, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10000, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10001, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10002, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10003, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10004, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10005, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10006, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10007, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10008, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10009, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10010, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10011, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10012, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10013, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10014, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10015, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10016, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10017, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10018, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10019, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10020, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10021, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10022, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10023, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10024, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10025, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10026, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10027, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10028, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10029, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10030, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10031, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10032, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10033, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10034, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10035, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10036, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10037, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10038, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10039, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10040, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10041, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10042, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10043, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:cherry_trapdoor": {States: []{{Id: 6281, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6282, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6283, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6284, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6285, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6286, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6287, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6288, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6289, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6290, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6291, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6292, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6293, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6294, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6295, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6296, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6297, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6298, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6299, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6300, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6301, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6302, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6303, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6304, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6305, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6306, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6307, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6308, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6309, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6310, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6311, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6312, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6313, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6314, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6315, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6316, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6317, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6318, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6319, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6320, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6321, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6322, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6323, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6324, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6325, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6326, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6327, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6328, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6329, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6330, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6331, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6332, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6333, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6334, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6335, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6336, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6337, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6338, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6339, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6340, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6341, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6342, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6343, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6344, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:cherry_wall_hanging_sign": {States: []{{Id: 5570, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5571, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5572, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5573, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5574, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5575, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5576, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5577, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:cherry_wall_sign": {States: []{{Id: 4794, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 4795, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 4796, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 4797, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 4798, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 4799, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 4800, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 4801, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:cherry_wood": {States: []{{Id: 204, Properties: map[string]string{"axis": "x"}}, {Id: 205, Properties: map[string]string{"axis": "y"}}, {Id: 206, Properties: map[string]string{"axis": "z"}}}}, "minecraft:chest": {States: []{{Id: 2954, Properties: map[string]string{"facing": "north", "type": "single", "waterlogged": "true"}}, {Id: 2955, Properties: map[string]string{"facing": "north", "type": "single", "waterlogged": "false"}}, {Id: 2956, Properties: map[string]string{"facing": "north", "type": "left", "waterlogged": "true"}}, {Id: 2957, Properties: map[string]string{"facing": "north", "type": "left", "waterlogged": "false"}}, {Id: 2958, Properties: map[string]string{"facing": "north", "type": "right", "waterlogged": "true"}}, {Id: 2959, Properties: map[string]string{"facing": "north", "type": "right", "waterlogged": "false"}}, {Id: 2960, Properties: map[string]string{"facing": "south", "type": "single", "waterlogged": "true"}}, {Id: 2961, Properties: map[string]string{"facing": "south", "type": "single", "waterlogged": "false"}}, {Id: 2962, Properties: map[string]string{"facing": "south", "type": "left", "waterlogged": "true"}}, {Id: 2963, Properties: map[string]string{"facing": "south", "type": "left", "waterlogged": "false"}}, {Id: 2964, Properties: map[string]string{"facing": "south", "type": "right", "waterlogged": "true"}}, {Id: 2965, Properties: map[string]string{"facing": "south", "type": "right", "waterlogged": "false"}}, {Id: 2966, Properties: map[string]string{"facing": "west", "type": "single", "waterlogged": "true"}}, {Id: 2967, Properties: map[string]string{"facing": "west", "type": "single", "waterlogged": "false"}}, {Id: 2968, Properties: map[string]string{"facing": "west", "type": "left", "waterlogged": "true"}}, {Id: 2969, Properties: map[string]string{"facing": "west", "type": "left", "waterlogged": "false"}}, {Id: 2970, Properties: map[string]string{"facing": "west", "type": "right", "waterlogged": "true"}}, {Id: 2971, Properties: map[string]string{"facing": "west", "type": "right", "waterlogged": "false"}}, {Id: 2972, Properties: map[string]string{"facing": "east", "type": "single", "waterlogged": "true"}}, {Id: 2973, Properties: map[string]string{"facing": "east", "type": "single", "waterlogged": "false"}}, {Id: 2974, Properties: map[string]string{"facing": "east", "type": "left", "waterlogged": "true"}}, {Id: 2975, Properties: map[string]string{"facing": "east", "type": "left", "waterlogged": "false"}}, {Id: 2976, Properties: map[string]string{"facing": "east", "type": "right", "waterlogged": "true"}}, {Id: 2977, Properties: map[string]string{"facing": "east", "type": "right", "waterlogged": "false"}}}}, "minecraft:chipped_anvil": {States: []{{Id: 9111, Properties: map[string]string{"facing": "north"}}, {Id: 9112, Properties: map[string]string{"facing": "south"}}, {Id: 9113, Properties: map[string]string{"facing": "west"}}, {Id: 9114, Properties: map[string]string{"facing": "east"}}}}, "minecraft:chiseled_bookshelf": {States: []{{Id: 2097, Properties: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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"}}, {Id: 2160, Properties: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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: map[string]string{"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": {States: []{{Id: 22951, Properties: map[string]string{}}}}, "minecraft:chiseled_deepslate": {States: []{{Id: 26551, Properties: map[string]string{}}}}, "minecraft:chiseled_nether_bricks": {States: []{{Id: 20722, Properties: map[string]string{}}}}, "minecraft:chiseled_polished_blackstone": {States: []{{Id: 19874, Properties: map[string]string{}}}}, "minecraft:chiseled_quartz_block": {States: []{{Id: 9236, Properties: map[string]string{}}}}, "minecraft:chiseled_red_sandstone": {States: []{{Id: 11080, Properties: map[string]string{}}}}, "minecraft:chiseled_sandstone": {States: []{{Id: 536, Properties: map[string]string{}}}}, "minecraft:chiseled_stone_bricks": {States: []{{Id: 6540, Properties: map[string]string{}}}}, "minecraft:chiseled_tuff": {States: []{{Id: 21903, Properties: map[string]string{}}}}, "minecraft:chiseled_tuff_bricks": {States: []{{Id: 22315, Properties: map[string]string{}}}}, "minecraft:chorus_flower": {States: []{{Id: 12404, Properties: map[string]string{"age": "0"}}, {Id: 12405, Properties: map[string]string{"age": "1"}}, {Id: 12406, Properties: map[string]string{"age": "2"}}, {Id: 12407, Properties: map[string]string{"age": "3"}}, {Id: 12408, Properties: map[string]string{"age": "4"}}, {Id: 12409, Properties: map[string]string{"age": "5"}}}}, "minecraft:chorus_plant": {States: []{{Id: 12340, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 12341, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 12342, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 12343, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 12344, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 12345, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 12346, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 12347, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 12348, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 12349, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 12350, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 12351, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 12352, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 12353, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 12354, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 12355, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 12356, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 12357, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 12358, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 12359, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 12360, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 12361, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 12362, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 12363, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 12364, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 12365, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 12366, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 12367, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 12368, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 12369, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 12370, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 12371, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 12372, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 12373, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 12374, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 12375, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 12376, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 12377, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 12378, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 12379, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 12380, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 12381, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 12382, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 12383, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 12384, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 12385, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 12386, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 12387, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 12388, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 12389, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 12390, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 12391, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 12392, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 12393, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 12394, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 12395, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 12396, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 12397, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 12398, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 12399, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 12400, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 12401, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 12402, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 12403, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}}}, "minecraft:clay": {States: []{{Id: 5798, Properties: map[string]string{}}}}, "minecraft:coal_block": {States: []{{Id: 10745, Properties: map[string]string{}}}}, "minecraft:coal_ore": {States: []{{Id: 127, Properties: map[string]string{}}}}, "minecraft:coarse_dirt": {States: []{{Id: 11, Properties: map[string]string{}}}}, "minecraft:cobbled_deepslate": {States: []{{Id: 24907, Properties: map[string]string{}}}}, "minecraft:cobbled_deepslate_slab": {States: []{{Id: 24988, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 24989, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 24990, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 24991, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 24992, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 24993, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:cobbled_deepslate_stairs": {States: []{{Id: 24908, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 24909, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 24910, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 24911, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 24912, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 24913, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 24914, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 24915, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 24916, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 24917, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 24918, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 24919, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 24920, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 24921, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 24922, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 24923, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 24924, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 24925, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 24926, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 24927, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 24928, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 24929, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 24930, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 24931, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 24932, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 24933, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 24934, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 24935, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 24936, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 24937, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 24938, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 24939, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 24940, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 24941, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 24942, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 24943, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 24944, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 24945, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 24946, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 24947, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 24948, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 24949, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 24950, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 24951, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 24952, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 24953, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 24954, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 24955, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 24956, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 24957, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 24958, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 24959, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 24960, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 24961, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 24962, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 24963, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 24964, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 24965, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 24966, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 24967, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 24968, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 24969, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 24970, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 24971, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 24972, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 24973, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 24974, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 24975, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 24976, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 24977, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 24978, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 24979, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 24980, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 24981, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 24982, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 24983, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 24984, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 24985, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 24986, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 24987, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:cobbled_deepslate_wall": {States: []{{Id: 24994, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 24995, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 24996, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 24997, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 24998, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 24999, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25000, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25001, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25002, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25003, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25004, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25005, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25006, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25007, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25008, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25009, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25010, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25011, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25012, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25013, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25014, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25015, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25016, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25017, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25018, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25019, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25020, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25021, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25022, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25023, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25024, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25025, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25026, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25027, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25028, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25029, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25030, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25031, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25032, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25033, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25034, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25035, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25036, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25037, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25038, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25039, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25040, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25041, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25042, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25043, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25044, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25045, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25046, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25047, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25048, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25049, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25050, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25051, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25052, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25053, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25054, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25055, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25056, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25057, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25058, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25059, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25060, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25061, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25062, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25063, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25064, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25065, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25066, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25067, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25068, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25069, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25070, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25071, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25072, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25073, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25074, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25075, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25076, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25077, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25078, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25079, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25080, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25081, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25082, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25083, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25084, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25085, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25086, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25087, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25088, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25089, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25090, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25091, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25092, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25093, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25094, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25095, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25096, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25097, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25098, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25099, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25100, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25101, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25102, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25103, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25104, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25105, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25106, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25107, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25108, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25109, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25110, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25111, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25112, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25113, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25114, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25115, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25116, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25117, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25118, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25119, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25120, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25121, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25122, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25123, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25124, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25125, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25126, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25127, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25128, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25129, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25130, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25131, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25132, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25133, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25134, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25135, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25136, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25137, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25138, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25139, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25140, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25141, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25142, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25143, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25144, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25145, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25146, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25147, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25148, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25149, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25150, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25151, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25152, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25153, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25154, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25155, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25156, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25157, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25158, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25159, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25160, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25161, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25162, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25163, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25164, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25165, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25166, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25167, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25168, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25169, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25170, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25171, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25172, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25173, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25174, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25175, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25176, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25177, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25178, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25179, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25180, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25181, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25182, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25183, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25184, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25185, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25186, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25187, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25188, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25189, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25190, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25191, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25192, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25193, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25194, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25195, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25196, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25197, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25198, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25199, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25200, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25201, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25202, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25203, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25204, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25205, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25206, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25207, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25208, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25209, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25210, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25211, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25212, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25213, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25214, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25215, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25216, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25217, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25218, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25219, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25220, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25221, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25222, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25223, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25224, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25225, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25226, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25227, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25228, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25229, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25230, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25231, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25232, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25233, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25234, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25235, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25236, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25237, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25238, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25239, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25240, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25241, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25242, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25243, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25244, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25245, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25246, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25247, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25248, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25249, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25250, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25251, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25252, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25253, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25254, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25255, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25256, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25257, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25258, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25259, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25260, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25261, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25262, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25263, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25264, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25265, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25266, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25267, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25268, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25269, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25270, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25271, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25272, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25273, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25274, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25275, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25276, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25277, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25278, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25279, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25280, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25281, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25282, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25283, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25284, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25285, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25286, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25287, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25288, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25289, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25290, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25291, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25292, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25293, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25294, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25295, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25296, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25297, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25298, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25299, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25300, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25301, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25302, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25303, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25304, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25305, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25306, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25307, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25308, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25309, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25310, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25311, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25312, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25313, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25314, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25315, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25316, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25317, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:cobblestone": {States: []{{Id: 14, Properties: map[string]string{}}}}, "minecraft:cobblestone_slab": {States: []{{Id: 11252, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11253, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11254, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11255, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11256, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11257, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:cobblestone_stairs": {States: []{{Id: 4682, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 4683, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 4684, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 4685, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 4686, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 4687, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 4688, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 4689, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 4690, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 4691, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 4692, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 4693, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 4694, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 4695, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 4696, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 4697, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 4698, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 4699, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 4700, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 4701, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 4702, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 4703, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 4704, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 4705, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 4706, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 4707, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 4708, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 4709, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 4710, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 4711, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 4712, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 4713, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 4714, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 4715, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 4716, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 4717, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 4718, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 4719, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 4720, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 4721, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 4722, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 4723, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 4724, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 4725, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 4726, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 4727, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 4728, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 4729, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 4730, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 4731, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 4732, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 4733, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 4734, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 4735, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 4736, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 4737, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 4738, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 4739, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 4740, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 4741, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 4742, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 4743, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 4744, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 4745, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 4746, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 4747, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 4748, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 4749, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 4750, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 4751, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 4752, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 4753, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 4754, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 4755, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 4756, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 4757, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 4758, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 4759, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 4760, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 4761, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:cobblestone_wall": {States: []{{Id: 7919, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 7920, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 7921, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 7922, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 7923, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 7924, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 7925, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 7926, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 7927, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 7928, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 7929, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 7930, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 7931, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 7932, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 7933, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 7934, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 7935, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 7936, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 7937, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 7938, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 7939, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 7940, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 7941, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 7942, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 7943, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 7944, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 7945, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 7946, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 7947, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 7948, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 7949, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 7950, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 7951, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 7952, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 7953, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 7954, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 7955, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 7956, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 7957, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 7958, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 7959, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 7960, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 7961, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 7962, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 7963, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 7964, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 7965, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 7966, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 7967, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 7968, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 7969, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 7970, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 7971, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 7972, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 7973, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 7974, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 7975, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 7976, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 7977, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 7978, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 7979, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 7980, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 7981, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 7982, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 7983, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 7984, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 7985, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 7986, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 7987, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 7988, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 7989, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 7990, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 7991, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 7992, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 7993, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 7994, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 7995, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 7996, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 7997, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 7998, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 7999, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8000, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8001, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8002, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8003, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8004, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8005, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8006, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8007, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8008, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8009, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8010, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8011, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8012, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8013, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8014, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8015, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8016, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8017, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8018, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8019, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8020, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8021, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8022, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8023, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8024, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8025, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8026, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8027, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8028, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8029, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8030, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8031, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8032, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8033, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8034, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8035, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8036, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8037, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8038, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8039, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8040, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8041, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8042, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8043, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8044, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8045, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8046, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8047, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8048, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8049, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8050, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8051, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8052, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8053, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8054, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8055, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8056, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8057, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8058, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8059, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8060, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8061, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8062, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8063, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8064, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8065, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8066, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8067, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8068, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8069, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8070, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8071, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8072, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8073, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8074, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8075, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8076, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8077, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8078, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8079, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8080, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8081, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8082, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8083, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8084, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8085, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8086, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8087, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8088, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8089, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8090, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8091, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8092, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8093, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8094, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8095, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8096, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8097, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8098, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8099, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8100, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8101, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8102, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8103, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8104, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8105, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8106, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8107, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8108, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8109, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8110, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8111, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8112, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8113, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8114, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8115, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8116, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8117, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8118, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8119, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8120, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8121, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8122, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8123, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8124, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8125, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8126, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8127, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8128, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8129, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8130, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8131, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8132, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8133, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8134, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8135, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8136, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8137, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8138, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8139, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8140, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8141, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8142, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8143, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8144, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8145, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8146, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8147, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8148, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8149, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8150, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8151, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8152, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8153, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8154, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8155, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8156, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8157, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8158, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8159, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8160, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8161, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8162, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8163, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8164, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8165, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8166, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8167, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8168, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8169, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8170, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8171, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8172, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8173, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8174, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8175, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8176, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8177, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8178, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8179, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8180, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8181, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8182, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8183, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8184, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8185, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8186, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8187, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8188, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8189, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8190, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8191, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8192, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8193, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8194, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8195, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8196, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8197, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8198, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8199, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8200, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8201, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8202, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8203, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8204, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8205, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8206, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8207, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8208, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8209, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8210, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8211, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8212, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8213, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8214, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8215, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8216, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8217, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8218, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8219, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8220, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8221, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8222, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8223, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8224, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8225, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8226, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8227, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8228, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8229, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8230, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8231, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8232, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8233, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8234, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8235, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8236, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8237, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8238, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8239, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8240, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8241, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8242, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:cobweb": {States: []{{Id: 2004, Properties: map[string]string{}}}}, "minecraft:cocoa": {States: []{{Id: 7419, Properties: map[string]string{"age": "0", "facing": "north"}}, {Id: 7420, Properties: map[string]string{"age": "0", "facing": "south"}}, {Id: 7421, Properties: map[string]string{"age": "0", "facing": "west"}}, {Id: 7422, Properties: map[string]string{"age": "0", "facing": "east"}}, {Id: 7423, Properties: map[string]string{"age": "1", "facing": "north"}}, {Id: 7424, Properties: map[string]string{"age": "1", "facing": "south"}}, {Id: 7425, Properties: map[string]string{"age": "1", "facing": "west"}}, {Id: 7426, Properties: map[string]string{"age": "1", "facing": "east"}}, {Id: 7427, Properties: map[string]string{"age": "2", "facing": "north"}}, {Id: 7428, Properties: map[string]string{"age": "2", "facing": "south"}}, {Id: 7429, Properties: map[string]string{"age": "2", "facing": "west"}}, {Id: 7430, Properties: map[string]string{"age": "2", "facing": "east"}}}}, "minecraft:command_block": {States: []{{Id: 7906, Properties: map[string]string{"conditional": "true", "facing": "north"}}, {Id: 7907, Properties: map[string]string{"conditional": "true", "facing": "east"}}, {Id: 7908, Properties: map[string]string{"conditional": "true", "facing": "south"}}, {Id: 7909, Properties: map[string]string{"conditional": "true", "facing": "west"}}, {Id: 7910, Properties: map[string]string{"conditional": "true", "facing": "up"}}, {Id: 7911, Properties: map[string]string{"conditional": "true", "facing": "down"}}, {Id: 7912, Properties: map[string]string{"conditional": "false", "facing": "north"}}, {Id: 7913, Properties: map[string]string{"conditional": "false", "facing": "east"}}, {Id: 7914, Properties: map[string]string{"conditional": "false", "facing": "south"}}, {Id: 7915, Properties: map[string]string{"conditional": "false", "facing": "west"}}, {Id: 7916, Properties: map[string]string{"conditional": "false", "facing": "up"}}, {Id: 7917, Properties: map[string]string{"conditional": "false", "facing": "down"}}}}, "minecraft:comparator": {States: []{{Id: 9175, Properties: map[string]string{"facing": "north", "mode": "compare", "powered": "true"}}, {Id: 9176, Properties: map[string]string{"facing": "north", "mode": "compare", "powered": "false"}}, {Id: 9177, Properties: map[string]string{"facing": "north", "mode": "subtract", "powered": "true"}}, {Id: 9178, Properties: map[string]string{"facing": "north", "mode": "subtract", "powered": "false"}}, {Id: 9179, Properties: map[string]string{"facing": "south", "mode": "compare", "powered": "true"}}, {Id: 9180, Properties: map[string]string{"facing": "south", "mode": "compare", "powered": "false"}}, {Id: 9181, Properties: map[string]string{"facing": "south", "mode": "subtract", "powered": "true"}}, {Id: 9182, Properties: map[string]string{"facing": "south", "mode": "subtract", "powered": "false"}}, {Id: 9183, Properties: map[string]string{"facing": "west", "mode": "compare", "powered": "true"}}, {Id: 9184, Properties: map[string]string{"facing": "west", "mode": "compare", "powered": "false"}}, {Id: 9185, Properties: map[string]string{"facing": "west", "mode": "subtract", "powered": "true"}}, {Id: 9186, Properties: map[string]string{"facing": "west", "mode": "subtract", "powered": "false"}}, {Id: 9187, Properties: map[string]string{"facing": "east", "mode": "compare", "powered": "true"}}, {Id: 9188, Properties: map[string]string{"facing": "east", "mode": "compare", "powered": "false"}}, {Id: 9189, Properties: map[string]string{"facing": "east", "mode": "subtract", "powered": "true"}}, {Id: 9190, Properties: map[string]string{"facing": "east", "mode": "subtract", "powered": "false"}}}}, "minecraft:composter": {States: []{{Id: 19372, Properties: map[string]string{"level": "0"}}, {Id: 19373, Properties: map[string]string{"level": "1"}}, {Id: 19374, Properties: map[string]string{"level": "2"}}, {Id: 19375, Properties: map[string]string{"level": "3"}}, {Id: 19376, Properties: map[string]string{"level": "4"}}, {Id: 19377, Properties: map[string]string{"level": "5"}}, {Id: 19378, Properties: map[string]string{"level": "6"}}, {Id: 19379, Properties: map[string]string{"level": "7"}}, {Id: 19380, Properties: map[string]string{"level": "8"}}}}, "minecraft:conduit": {States: []{{Id: 12942, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12943, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:copper_block": {States: []{{Id: 22938, Properties: map[string]string{}}}}, "minecraft:copper_bulb": {States: []{{Id: 24692, Properties: map[string]string{"lit": "true", "powered": "true"}}, {Id: 24693, Properties: map[string]string{"lit": "true", "powered": "false"}}, {Id: 24694, Properties: map[string]string{"lit": "false", "powered": "true"}}, {Id: 24695, Properties: map[string]string{"lit": "false", "powered": "false"}}}}, "minecraft:copper_door": {States: []{{Id: 23652, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23653, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23654, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23655, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23656, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23657, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23658, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23659, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23660, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23661, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23662, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23663, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23664, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23665, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23666, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23667, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23668, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23669, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23670, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23671, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23672, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23673, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23674, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23675, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23676, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23677, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23678, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23679, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23680, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23681, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23682, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23683, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23684, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23685, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23686, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23687, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23688, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23689, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23690, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23691, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23692, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23693, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23694, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23695, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23696, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23697, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23698, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23699, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23700, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23701, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23702, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23703, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23704, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23705, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23706, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23707, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23708, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23709, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23710, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23711, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23712, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23713, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23714, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23715, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:copper_grate": {States: []{{Id: 24676, Properties: map[string]string{"waterlogged": "true"}}, {Id: 24677, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:copper_ore": {States: []{{Id: 22942, Properties: map[string]string{}}}}, "minecraft:copper_trapdoor": {States: []{{Id: 24164, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24165, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24166, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24167, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24168, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24169, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24170, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24171, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24172, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24173, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24174, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24175, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24176, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24177, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24178, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24179, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24180, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24181, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24182, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24183, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24184, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24185, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24186, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24187, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24188, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24189, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24190, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24191, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24192, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24193, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24194, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24195, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24196, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24197, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24198, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24199, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24200, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24201, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24202, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24203, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24204, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24205, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24206, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24207, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24208, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24209, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24210, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24211, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24212, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24213, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24214, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24215, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24216, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24217, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24218, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24219, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24220, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24221, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24222, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24223, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24224, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24225, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24226, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24227, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:cornflower": {States: []{{Id: 2086, Properties: map[string]string{}}}}, "minecraft:cracked_deepslate_bricks": {States: []{{Id: 26552, Properties: map[string]string{}}}}, "minecraft:cracked_deepslate_tiles": {States: []{{Id: 26553, Properties: map[string]string{}}}}, "minecraft:cracked_nether_bricks": {States: []{{Id: 20723, Properties: map[string]string{}}}}, "minecraft:cracked_polished_blackstone_bricks": {States: []{{Id: 19873, Properties: map[string]string{}}}}, "minecraft:cracked_stone_bricks": {States: []{{Id: 6539, Properties: map[string]string{}}}}, "minecraft:crafter": {States: []{{Id: 26590, Properties: map[string]string{"crafting": "true", "orientation": "down_east", "triggered": "true"}}, {Id: 26591, Properties: map[string]string{"crafting": "true", "orientation": "down_east", "triggered": "false"}}, {Id: 26592, Properties: map[string]string{"crafting": "true", "orientation": "down_north", "triggered": "true"}}, {Id: 26593, Properties: map[string]string{"crafting": "true", "orientation": "down_north", "triggered": "false"}}, {Id: 26594, Properties: map[string]string{"crafting": "true", "orientation": "down_south", "triggered": "true"}}, {Id: 26595, Properties: map[string]string{"crafting": "true", "orientation": "down_south", "triggered": "false"}}, {Id: 26596, Properties: map[string]string{"crafting": "true", "orientation": "down_west", "triggered": "true"}}, {Id: 26597, Properties: map[string]string{"crafting": "true", "orientation": "down_west", "triggered": "false"}}, {Id: 26598, Properties: map[string]string{"crafting": "true", "orientation": "up_east", "triggered": "true"}}, {Id: 26599, Properties: map[string]string{"crafting": "true", "orientation": "up_east", "triggered": "false"}}, {Id: 26600, Properties: map[string]string{"crafting": "true", "orientation": "up_north", "triggered": "true"}}, {Id: 26601, Properties: map[string]string{"crafting": "true", "orientation": "up_north", "triggered": "false"}}, {Id: 26602, Properties: map[string]string{"crafting": "true", "orientation": "up_south", "triggered": "true"}}, {Id: 26603, Properties: map[string]string{"crafting": "true", "orientation": "up_south", "triggered": "false"}}, {Id: 26604, Properties: map[string]string{"crafting": "true", "orientation": "up_west", "triggered": "true"}}, {Id: 26605, Properties: map[string]string{"crafting": "true", "orientation": "up_west", "triggered": "false"}}, {Id: 26606, Properties: map[string]string{"crafting": "true", "orientation": "west_up", "triggered": "true"}}, {Id: 26607, Properties: map[string]string{"crafting": "true", "orientation": "west_up", "triggered": "false"}}, {Id: 26608, Properties: map[string]string{"crafting": "true", "orientation": "east_up", "triggered": "true"}}, {Id: 26609, Properties: map[string]string{"crafting": "true", "orientation": "east_up", "triggered": "false"}}, {Id: 26610, Properties: map[string]string{"crafting": "true", "orientation": "north_up", "triggered": "true"}}, {Id: 26611, Properties: map[string]string{"crafting": "true", "orientation": "north_up", "triggered": "false"}}, {Id: 26612, Properties: map[string]string{"crafting": "true", "orientation": "south_up", "triggered": "true"}}, {Id: 26613, Properties: map[string]string{"crafting": "true", "orientation": "south_up", "triggered": "false"}}, {Id: 26614, Properties: map[string]string{"crafting": "false", "orientation": "down_east", "triggered": "true"}}, {Id: 26615, Properties: map[string]string{"crafting": "false", "orientation": "down_east", "triggered": "false"}}, {Id: 26616, Properties: map[string]string{"crafting": "false", "orientation": "down_north", "triggered": "true"}}, {Id: 26617, Properties: map[string]string{"crafting": "false", "orientation": "down_north", "triggered": "false"}}, {Id: 26618, Properties: map[string]string{"crafting": "false", "orientation": "down_south", "triggered": "true"}}, {Id: 26619, Properties: map[string]string{"crafting": "false", "orientation": "down_south", "triggered": "false"}}, {Id: 26620, Properties: map[string]string{"crafting": "false", "orientation": "down_west", "triggered": "true"}}, {Id: 26621, Properties: map[string]string{"crafting": "false", "orientation": "down_west", "triggered": "false"}}, {Id: 26622, Properties: map[string]string{"crafting": "false", "orientation": "up_east", "triggered": "true"}}, {Id: 26623, Properties: map[string]string{"crafting": "false", "orientation": "up_east", "triggered": "false"}}, {Id: 26624, Properties: map[string]string{"crafting": "false", "orientation": "up_north", "triggered": "true"}}, {Id: 26625, Properties: map[string]string{"crafting": "false", "orientation": "up_north", "triggered": "false"}}, {Id: 26626, Properties: map[string]string{"crafting": "false", "orientation": "up_south", "triggered": "true"}}, {Id: 26627, Properties: map[string]string{"crafting": "false", "orientation": "up_south", "triggered": "false"}}, {Id: 26628, Properties: map[string]string{"crafting": "false", "orientation": "up_west", "triggered": "true"}}, {Id: 26629, Properties: map[string]string{"crafting": "false", "orientation": "up_west", "triggered": "false"}}, {Id: 26630, Properties: map[string]string{"crafting": "false", "orientation": "west_up", "triggered": "true"}}, {Id: 26631, Properties: map[string]string{"crafting": "false", "orientation": "west_up", "triggered": "false"}}, {Id: 26632, Properties: map[string]string{"crafting": "false", "orientation": "east_up", "triggered": "true"}}, {Id: 26633, Properties: map[string]string{"crafting": "false", "orientation": "east_up", "triggered": "false"}}, {Id: 26634, Properties: map[string]string{"crafting": "false", "orientation": "north_up", "triggered": "true"}}, {Id: 26635, Properties: map[string]string{"crafting": "false", "orientation": "north_up", "triggered": "false"}}, {Id: 26636, Properties: map[string]string{"crafting": "false", "orientation": "south_up", "triggered": "true"}}, {Id: 26637, Properties: map[string]string{"crafting": "false", "orientation": "south_up", "triggered": "false"}}}}, "minecraft:crafting_table": {States: []{{Id: 4277, Properties: map[string]string{}}}}, "minecraft:creeper_head": {States: []{{Id: 8987, Properties: map[string]string{"powered": "true", "rotation": "0"}}, {Id: 8988, Properties: map[string]string{"powered": "true", "rotation": "1"}}, {Id: 8989, Properties: map[string]string{"powered": "true", "rotation": "2"}}, {Id: 8990, Properties: map[string]string{"powered": "true", "rotation": "3"}}, {Id: 8991, Properties: map[string]string{"powered": "true", "rotation": "4"}}, {Id: 8992, Properties: map[string]string{"powered": "true", "rotation": "5"}}, {Id: 8993, Properties: map[string]string{"powered": "true", "rotation": "6"}}, {Id: 8994, Properties: map[string]string{"powered": "true", "rotation": "7"}}, {Id: 8995, Properties: map[string]string{"powered": "true", "rotation": "8"}}, {Id: 8996, Properties: map[string]string{"powered": "true", "rotation": "9"}}, {Id: 8997, Properties: map[string]string{"powered": "true", "rotation": "10"}}, {Id: 8998, Properties: map[string]string{"powered": "true", "rotation": "11"}}, {Id: 8999, Properties: map[string]string{"powered": "true", "rotation": "12"}}, {Id: 9000, Properties: map[string]string{"powered": "true", "rotation": "13"}}, {Id: 9001, Properties: map[string]string{"powered": "true", "rotation": "14"}}, {Id: 9002, Properties: map[string]string{"powered": "true", "rotation": "15"}}, {Id: 9003, Properties: map[string]string{"powered": "false", "rotation": "0"}}, {Id: 9004, Properties: map[string]string{"powered": "false", "rotation": "1"}}, {Id: 9005, Properties: map[string]string{"powered": "false", "rotation": "2"}}, {Id: 9006, Properties: map[string]string{"powered": "false", "rotation": "3"}}, {Id: 9007, Properties: map[string]string{"powered": "false", "rotation": "4"}}, {Id: 9008, Properties: map[string]string{"powered": "false", "rotation": "5"}}, {Id: 9009, Properties: map[string]string{"powered": "false", "rotation": "6"}}, {Id: 9010, Properties: map[string]string{"powered": "false", "rotation": "7"}}, {Id: 9011, Properties: map[string]string{"powered": "false", "rotation": "8"}}, {Id: 9012, Properties: map[string]string{"powered": "false", "rotation": "9"}}, {Id: 9013, Properties: map[string]string{"powered": "false", "rotation": "10"}}, {Id: 9014, Properties: map[string]string{"powered": "false", "rotation": "11"}}, {Id: 9015, Properties: map[string]string{"powered": "false", "rotation": "12"}}, {Id: 9016, Properties: map[string]string{"powered": "false", "rotation": "13"}}, {Id: 9017, Properties: map[string]string{"powered": "false", "rotation": "14"}}, {Id: 9018, Properties: map[string]string{"powered": "false", "rotation": "15"}}}}, "minecraft:creeper_wall_head": {States: []{{Id: 9019, Properties: map[string]string{"facing": "north", "powered": "true"}}, {Id: 9020, Properties: map[string]string{"facing": "north", "powered": "false"}}, {Id: 9021, Properties: map[string]string{"facing": "south", "powered": "true"}}, {Id: 9022, Properties: map[string]string{"facing": "south", "powered": "false"}}, {Id: 9023, Properties: map[string]string{"facing": "west", "powered": "true"}}, {Id: 9024, Properties: map[string]string{"facing": "west", "powered": "false"}}, {Id: 9025, Properties: map[string]string{"facing": "east", "powered": "true"}}, {Id: 9026, Properties: map[string]string{"facing": "east", "powered": "false"}}}}, "minecraft:crimson_button": {States: []{{Id: 19100, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 19101, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 19102, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 19103, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 19104, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 19105, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 19106, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 19107, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 19108, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 19109, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 19110, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 19111, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 19112, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 19113, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 19114, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 19115, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 19116, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 19117, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 19118, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 19119, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 19120, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 19121, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 19122, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 19123, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:crimson_door": {States: []{{Id: 19148, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19149, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19150, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19151, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19152, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19153, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19154, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19155, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19156, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19157, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19158, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19159, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19160, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19161, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19162, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19163, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19164, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19165, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19166, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19167, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19168, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19169, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19170, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19171, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19172, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19173, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19174, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19175, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19176, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19177, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19178, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19179, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19180, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19181, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19182, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19183, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19184, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19185, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19186, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19187, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19188, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19189, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19190, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19191, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19192, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19193, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19194, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19195, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19196, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19197, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19198, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19199, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19200, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19201, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19202, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19203, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19204, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19205, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19206, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19207, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19208, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19209, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19210, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19211, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:crimson_fence": {States: []{{Id: 18684, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 18685, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 18686, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 18687, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 18688, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 18689, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 18690, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 18691, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 18692, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 18693, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 18694, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 18695, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 18696, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 18697, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 18698, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 18699, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 18700, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 18701, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 18702, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 18703, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 18704, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 18705, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 18706, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 18707, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 18708, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 18709, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 18710, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 18711, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 18712, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 18713, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 18714, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 18715, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:crimson_fence_gate": {States: []{{Id: 18876, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 18877, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 18878, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 18879, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 18880, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 18881, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 18882, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 18883, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 18884, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 18885, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 18886, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 18887, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 18888, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 18889, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 18890, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 18891, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 18892, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 18893, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 18894, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 18895, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 18896, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 18897, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 18898, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 18899, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 18900, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 18901, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 18902, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 18903, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 18904, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 18905, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 18906, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 18907, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:crimson_fungus": {States: []{{Id: 18609, Properties: map[string]string{}}}}, "minecraft:crimson_hanging_sign": {States: []{{Id: 5282, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 5283, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 5284, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 5285, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 5286, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 5287, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 5288, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 5289, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 5290, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 5291, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 5292, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 5293, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 5294, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 5295, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 5296, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 5297, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 5298, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 5299, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 5300, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 5301, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 5302, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 5303, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 5304, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 5305, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 5306, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 5307, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 5308, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 5309, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 5310, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 5311, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 5312, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 5313, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 5314, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 5315, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 5316, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 5317, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 5318, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 5319, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 5320, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 5321, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 5322, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 5323, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 5324, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 5325, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 5326, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 5327, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 5328, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 5329, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 5330, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 5331, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 5332, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 5333, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 5334, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 5335, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 5336, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 5337, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 5338, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 5339, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 5340, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 5341, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 5342, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 5343, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 5344, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 5345, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:crimson_hyphae": {States: []{{Id: 18602, Properties: map[string]string{"axis": "x"}}, {Id: 18603, Properties: map[string]string{"axis": "y"}}, {Id: 18604, Properties: map[string]string{"axis": "z"}}}}, "minecraft:crimson_nylium": {States: []{{Id: 18608, Properties: map[string]string{}}}}, "minecraft:crimson_planks": {States: []{{Id: 18666, Properties: map[string]string{}}}}, "minecraft:crimson_pressure_plate": {States: []{{Id: 18680, Properties: map[string]string{"powered": "true"}}, {Id: 18681, Properties: map[string]string{"powered": "false"}}}}, "minecraft:crimson_roots": {States: []{{Id: 18665, Properties: map[string]string{}}}}, "minecraft:crimson_sign": {States: []{{Id: 19276, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 19277, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 19278, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 19279, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 19280, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 19281, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 19282, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 19283, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 19284, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 19285, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 19286, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 19287, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 19288, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 19289, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 19290, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 19291, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 19292, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 19293, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 19294, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 19295, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 19296, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 19297, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 19298, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 19299, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 19300, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 19301, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 19302, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 19303, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 19304, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 19305, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 19306, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 19307, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:crimson_slab": {States: []{{Id: 18668, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 18669, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 18670, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 18671, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 18672, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 18673, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:crimson_stairs": {States: []{{Id: 18940, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 18941, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 18942, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 18943, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 18944, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 18945, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 18946, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 18947, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 18948, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 18949, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 18950, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 18951, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 18952, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 18953, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 18954, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 18955, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 18956, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 18957, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 18958, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 18959, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 18960, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 18961, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 18962, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 18963, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 18964, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 18965, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 18966, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 18967, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 18968, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 18969, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 18970, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 18971, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 18972, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 18973, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 18974, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 18975, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 18976, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 18977, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 18978, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 18979, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 18980, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 18981, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 18982, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 18983, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 18984, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 18985, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 18986, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 18987, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 18988, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 18989, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 18990, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 18991, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 18992, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 18993, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 18994, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 18995, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 18996, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 18997, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 18998, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 18999, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19000, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19001, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19002, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19003, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19004, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19005, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19006, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19007, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19008, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19009, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19010, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19011, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19012, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19013, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19014, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19015, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19016, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19017, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19018, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19019, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:crimson_stem": {States: []{{Id: 18596, Properties: map[string]string{"axis": "x"}}, {Id: 18597, Properties: map[string]string{"axis": "y"}}, {Id: 18598, Properties: map[string]string{"axis": "z"}}}}, "minecraft:crimson_trapdoor": {States: []{{Id: 18748, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18749, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18750, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18751, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18752, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18753, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18754, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18755, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18756, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18757, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18758, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18759, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18760, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18761, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18762, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18763, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18764, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18765, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18766, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18767, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18768, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18769, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18770, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18771, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18772, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18773, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18774, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18775, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18776, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18777, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18778, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18779, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18780, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18781, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18782, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18783, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18784, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18785, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18786, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18787, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18788, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18789, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18790, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18791, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18792, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18793, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18794, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18795, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18796, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18797, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18798, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18799, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18800, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18801, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18802, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18803, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18804, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18805, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18806, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18807, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18808, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18809, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18810, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18811, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:crimson_wall_hanging_sign": {States: []{{Id: 5602, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5603, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5604, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5605, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5606, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5607, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5608, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5609, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:crimson_wall_sign": {States: []{{Id: 19340, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 19341, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 19342, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 19343, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 19344, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 19345, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 19346, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 19347, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:crying_obsidian": {States: []{{Id: 19449, Properties: map[string]string{}}}}, "minecraft:cut_copper": {States: []{{Id: 22947, Properties: map[string]string{}}}}, "minecraft:cut_copper_slab": {States: []{{Id: 23294, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 23295, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 23296, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 23297, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 23298, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 23299, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:cut_copper_stairs": {States: []{{Id: 23196, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23197, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23198, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23199, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23200, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23201, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23202, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23203, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23204, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23205, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23206, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23207, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23208, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23209, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23210, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23211, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23212, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23213, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23214, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23215, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23216, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23217, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23218, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23219, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23220, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23221, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23222, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23223, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23224, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23225, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23226, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23227, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23228, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23229, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23230, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23231, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23232, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23233, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23234, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23235, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23236, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23237, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23238, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23239, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23240, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23241, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23242, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23243, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23244, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23245, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23246, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23247, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23248, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23249, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23250, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23251, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23252, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23253, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23254, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23255, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23256, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23257, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23258, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23259, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23260, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23261, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23262, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23263, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23264, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23265, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23266, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23267, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23268, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23269, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23270, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23271, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23272, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23273, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23274, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23275, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:cut_red_sandstone": {States: []{{Id: 11081, Properties: map[string]string{}}}}, "minecraft:cut_red_sandstone_slab": {States: []{{Id: 11294, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11295, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11296, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11297, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11298, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11299, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:cut_sandstone": {States: []{{Id: 537, Properties: map[string]string{}}}}, "minecraft:cut_sandstone_slab": {States: []{{Id: 11240, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11241, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11242, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11243, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11244, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11245, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:cyan_banner": {States: []{{Id: 10903, Properties: map[string]string{"rotation": "0"}}, {Id: 10904, Properties: map[string]string{"rotation": "1"}}, {Id: 10905, Properties: map[string]string{"rotation": "2"}}, {Id: 10906, Properties: map[string]string{"rotation": "3"}}, {Id: 10907, Properties: map[string]string{"rotation": "4"}}, {Id: 10908, Properties: map[string]string{"rotation": "5"}}, {Id: 10909, Properties: map[string]string{"rotation": "6"}}, {Id: 10910, Properties: map[string]string{"rotation": "7"}}, {Id: 10911, Properties: map[string]string{"rotation": "8"}}, {Id: 10912, Properties: map[string]string{"rotation": "9"}}, {Id: 10913, Properties: map[string]string{"rotation": "10"}}, {Id: 10914, Properties: map[string]string{"rotation": "11"}}, {Id: 10915, Properties: map[string]string{"rotation": "12"}}, {Id: 10916, Properties: map[string]string{"rotation": "13"}}, {Id: 10917, Properties: map[string]string{"rotation": "14"}}, {Id: 10918, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:cyan_bed": {States: []{{Id: 1832, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1833, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1834, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1835, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1836, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1837, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1838, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1839, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1840, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1841, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1842, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1843, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1844, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1845, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1846, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1847, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:cyan_candle": {States: []{{Id: 20885, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20886, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20887, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20888, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20889, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20890, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20891, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20892, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20893, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20894, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20895, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20896, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20897, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20898, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20899, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20900, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:cyan_candle_cake": {States: []{{Id: 21017, Properties: map[string]string{"lit": "true"}}, {Id: 21018, Properties: map[string]string{"lit": "false"}}}}, "minecraft:cyan_carpet": {States: []{{Id: 10737, Properties: map[string]string{}}}}, "minecraft:cyan_concrete": {States: []{{Id: 12737, Properties: map[string]string{}}}}, "minecraft:cyan_concrete_powder": {States: []{{Id: 12753, Properties: map[string]string{}}}}, "minecraft:cyan_glazed_terracotta": {States: []{{Id: 12700, Properties: map[string]string{"facing": "north"}}, {Id: 12701, Properties: map[string]string{"facing": "south"}}, {Id: 12702, Properties: map[string]string{"facing": "west"}}, {Id: 12703, Properties: map[string]string{"facing": "east"}}}}, "minecraft:cyan_shulker_box": {States: []{{Id: 12622, Properties: map[string]string{"facing": "north"}}, {Id: 12623, Properties: map[string]string{"facing": "east"}}, {Id: 12624, Properties: map[string]string{"facing": "south"}}, {Id: 12625, Properties: map[string]string{"facing": "west"}}, {Id: 12626, Properties: map[string]string{"facing": "up"}}, {Id: 12627, Properties: map[string]string{"facing": "down"}}}}, "minecraft:cyan_stained_glass": {States: []{{Id: 5954, Properties: map[string]string{}}}}, "minecraft:cyan_stained_glass_pane": {States: []{{Id: 9660, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9661, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9662, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9663, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9664, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9665, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9666, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9667, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9668, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9669, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9670, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9671, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9672, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9673, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9674, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9675, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9676, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9677, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9678, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9679, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9680, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9681, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9682, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9683, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9684, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9685, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9686, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9687, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9688, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9689, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9690, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9691, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:cyan_terracotta": {States: []{{Id: 9365, Properties: map[string]string{}}}}, "minecraft:cyan_wall_banner": {States: []{{Id: 11051, Properties: map[string]string{"facing": "north"}}, {Id: 11052, Properties: map[string]string{"facing": "south"}}, {Id: 11053, Properties: map[string]string{"facing": "west"}}, {Id: 11054, Properties: map[string]string{"facing": "east"}}}}, "minecraft:cyan_wool": {States: []{{Id: 2056, Properties: map[string]string{}}}}, "minecraft:damaged_anvil": {States: []{{Id: 9115, Properties: map[string]string{"facing": "north"}}, {Id: 9116, Properties: map[string]string{"facing": "south"}}, {Id: 9117, Properties: map[string]string{"facing": "west"}}, {Id: 9118, Properties: map[string]string{"facing": "east"}}}}, "minecraft:dandelion": {States: []{{Id: 2075, Properties: map[string]string{}}}}, "minecraft:dark_oak_button": {States: []{{Id: 8755, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 8756, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 8757, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 8758, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 8759, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 8760, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 8761, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 8762, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 8763, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 8764, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 8765, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 8766, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 8767, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 8768, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 8769, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 8770, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 8771, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 8772, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 8773, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 8774, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 8775, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 8776, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 8777, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 8778, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:dark_oak_door": {States: []{{Id: 12142, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12143, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12144, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12145, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12146, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12147, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12148, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12149, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12150, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12151, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12152, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12153, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12154, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12155, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12156, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12157, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12158, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12159, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12160, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12161, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12162, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12163, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12164, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12165, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12166, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12167, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12168, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12169, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12170, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12171, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12172, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12173, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12174, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12175, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12176, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12177, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12178, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12179, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12180, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12181, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12182, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12183, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12184, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12185, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12186, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12187, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12188, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12189, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12190, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12191, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12192, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12193, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12194, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12195, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12196, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12197, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12198, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12199, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12200, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12201, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12202, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12203, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12204, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12205, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:dark_oak_fence": {States: []{{Id: 11726, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11727, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11728, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11729, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11730, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11731, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11732, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11733, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11734, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11735, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11736, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11737, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11738, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11739, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11740, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11741, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11742, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11743, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11744, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11745, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11746, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11747, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11748, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11749, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11750, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11751, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11752, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11753, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11754, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11755, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11756, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11757, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:dark_oak_fence_gate": {States: []{{Id: 11470, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11471, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11472, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11473, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11474, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11475, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11476, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11477, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11478, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11479, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11480, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11481, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11482, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11483, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11484, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11485, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11486, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11487, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11488, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11489, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11490, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11491, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11492, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11493, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11494, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11495, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11496, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11497, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11498, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11499, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11500, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11501, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:dark_oak_hanging_sign": {States: []{{Id: 5218, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 5219, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 5220, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 5221, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 5222, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 5223, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 5224, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 5225, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 5226, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 5227, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 5228, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 5229, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 5230, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 5231, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 5232, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 5233, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 5234, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 5235, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 5236, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 5237, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 5238, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 5239, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 5240, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 5241, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 5242, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 5243, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 5244, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 5245, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 5246, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 5247, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 5248, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 5249, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 5250, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 5251, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 5252, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 5253, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 5254, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 5255, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 5256, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 5257, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 5258, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 5259, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 5260, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 5261, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 5262, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 5263, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 5264, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 5265, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 5266, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 5267, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 5268, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 5269, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 5270, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 5271, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 5272, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 5273, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 5274, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 5275, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 5276, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 5277, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 5278, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 5279, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 5280, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 5281, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:dark_oak_leaves": {States: []{{Id: 405, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "true"}}, {Id: 406, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "false"}}, {Id: 407, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "true"}}, {Id: 408, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "false"}}, {Id: 409, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "true"}}, {Id: 410, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "false"}}, {Id: 411, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "true"}}, {Id: 412, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "false"}}, {Id: 413, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "true"}}, {Id: 414, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "false"}}, {Id: 415, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "true"}}, {Id: 416, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "false"}}, {Id: 417, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "true"}}, {Id: 418, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "false"}}, {Id: 419, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "true"}}, {Id: 420, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "false"}}, {Id: 421, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "true"}}, {Id: 422, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "false"}}, {Id: 423, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "true"}}, {Id: 424, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "false"}}, {Id: 425, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "true"}}, {Id: 426, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "false"}}, {Id: 427, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "true"}}, {Id: 428, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "false"}}, {Id: 429, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "true"}}, {Id: 430, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "false"}}, {Id: 431, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "true"}}, {Id: 432, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "false"}}}}, "minecraft:dark_oak_log": {States: []{{Id: 148, Properties: map[string]string{"axis": "x"}}, {Id: 149, Properties: map[string]string{"axis": "y"}}, {Id: 150, Properties: map[string]string{"axis": "z"}}}}, "minecraft:dark_oak_planks": {States: []{{Id: 21, Properties: map[string]string{}}}}, "minecraft:dark_oak_pressure_plate": {States: []{{Id: 5728, Properties: map[string]string{"powered": "true"}}, {Id: 5729, Properties: map[string]string{"powered": "false"}}}}, "minecraft:dark_oak_sapling": {States: []{{Id: 37, Properties: map[string]string{"stage": "0"}}, {Id: 38, Properties: map[string]string{"stage": "1"}}}}, "minecraft:dark_oak_sign": {States: []{{Id: 4494, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 4495, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 4496, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 4497, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 4498, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 4499, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 4500, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 4501, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 4502, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 4503, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 4504, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 4505, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 4506, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 4507, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 4508, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 4509, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 4510, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 4511, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 4512, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 4513, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 4514, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 4515, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 4516, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 4517, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 4518, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 4519, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 4520, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 4521, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 4522, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 4523, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 4524, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 4525, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:dark_oak_slab": {States: []{{Id: 11198, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11199, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11200, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11201, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11202, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11203, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:dark_oak_stairs": {States: []{{Id: 10044, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10045, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10046, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10047, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10048, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10049, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10050, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10051, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10052, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10053, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10054, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10055, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10056, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10057, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10058, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10059, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10060, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10061, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10062, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10063, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10064, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10065, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10066, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10067, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10068, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10069, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10070, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10071, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10072, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10073, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10074, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10075, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10076, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10077, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10078, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10079, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10080, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10081, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10082, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10083, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10084, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10085, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10086, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10087, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10088, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10089, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10090, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10091, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10092, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10093, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10094, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10095, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10096, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10097, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10098, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10099, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10100, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10101, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10102, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10103, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10104, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10105, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10106, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10107, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10108, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10109, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10110, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10111, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10112, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10113, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10114, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10115, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10116, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10117, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10118, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10119, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10120, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10121, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10122, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10123, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:dark_oak_trapdoor": {States: []{{Id: 6345, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6346, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6347, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6348, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6349, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6350, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6351, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6352, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6353, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6354, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6355, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6356, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6357, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6358, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6359, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6360, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6361, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6362, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6363, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6364, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6365, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6366, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6367, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6368, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6369, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6370, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6371, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6372, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6373, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6374, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6375, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6376, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6377, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6378, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6379, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6380, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6381, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6382, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6383, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6384, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6385, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6386, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6387, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6388, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6389, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6390, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6391, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6392, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6393, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6394, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6395, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6396, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6397, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6398, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6399, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6400, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6401, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6402, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6403, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6404, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6405, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6406, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6407, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6408, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:dark_oak_wall_hanging_sign": {States: []{{Id: 5586, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5587, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5588, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5589, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5590, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5591, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5592, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5593, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:dark_oak_wall_sign": {States: []{{Id: 4810, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 4811, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 4812, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 4813, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 4814, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 4815, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 4816, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 4817, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:dark_oak_wood": {States: []{{Id: 207, Properties: map[string]string{"axis": "x"}}, {Id: 208, Properties: map[string]string{"axis": "y"}}, {Id: 209, Properties: map[string]string{"axis": "z"}}}}, "minecraft:dark_prismarine": {States: []{{Id: 10465, Properties: map[string]string{}}}}, "minecraft:dark_prismarine_slab": {States: []{{Id: 10718, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 10719, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 10720, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 10721, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 10722, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 10723, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:dark_prismarine_stairs": {States: []{{Id: 10626, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10627, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10628, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10629, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10630, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10631, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10632, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10633, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10634, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10635, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10636, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10637, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10638, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10639, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10640, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10641, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10642, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10643, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10644, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10645, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10646, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10647, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10648, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10649, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10650, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10651, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10652, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10653, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10654, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10655, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10656, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10657, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10658, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10659, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10660, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10661, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10662, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10663, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10664, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10665, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10666, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10667, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10668, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10669, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10670, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10671, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10672, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10673, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10674, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10675, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10676, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10677, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10678, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10679, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10680, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10681, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10682, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10683, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10684, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10685, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10686, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10687, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10688, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10689, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10690, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10691, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10692, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10693, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10694, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10695, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10696, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10697, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10698, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10699, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10700, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10701, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10702, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10703, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10704, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10705, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:daylight_detector": {States: []{{Id: 9191, Properties: map[string]string{"inverted": "true", "power": "0"}}, {Id: 9192, Properties: map[string]string{"inverted": "true", "power": "1"}}, {Id: 9193, Properties: map[string]string{"inverted": "true", "power": "2"}}, {Id: 9194, Properties: map[string]string{"inverted": "true", "power": "3"}}, {Id: 9195, Properties: map[string]string{"inverted": "true", "power": "4"}}, {Id: 9196, Properties: map[string]string{"inverted": "true", "power": "5"}}, {Id: 9197, Properties: map[string]string{"inverted": "true", "power": "6"}}, {Id: 9198, Properties: map[string]string{"inverted": "true", "power": "7"}}, {Id: 9199, Properties: map[string]string{"inverted": "true", "power": "8"}}, {Id: 9200, Properties: map[string]string{"inverted": "true", "power": "9"}}, {Id: 9201, Properties: map[string]string{"inverted": "true", "power": "10"}}, {Id: 9202, Properties: map[string]string{"inverted": "true", "power": "11"}}, {Id: 9203, Properties: map[string]string{"inverted": "true", "power": "12"}}, {Id: 9204, Properties: map[string]string{"inverted": "true", "power": "13"}}, {Id: 9205, Properties: map[string]string{"inverted": "true", "power": "14"}}, {Id: 9206, Properties: map[string]string{"inverted": "true", "power": "15"}}, {Id: 9207, Properties: map[string]string{"inverted": "false", "power": "0"}}, {Id: 9208, Properties: map[string]string{"inverted": "false", "power": "1"}}, {Id: 9209, Properties: map[string]string{"inverted": "false", "power": "2"}}, {Id: 9210, Properties: map[string]string{"inverted": "false", "power": "3"}}, {Id: 9211, Properties: map[string]string{"inverted": "false", "power": "4"}}, {Id: 9212, Properties: map[string]string{"inverted": "false", "power": "5"}}, {Id: 9213, Properties: map[string]string{"inverted": "false", "power": "6"}}, {Id: 9214, Properties: map[string]string{"inverted": "false", "power": "7"}}, {Id: 9215, Properties: map[string]string{"inverted": "false", "power": "8"}}, {Id: 9216, Properties: map[string]string{"inverted": "false", "power": "9"}}, {Id: 9217, Properties: map[string]string{"inverted": "false", "power": "10"}}, {Id: 9218, Properties: map[string]string{"inverted": "false", "power": "11"}}, {Id: 9219, Properties: map[string]string{"inverted": "false", "power": "12"}}, {Id: 9220, Properties: map[string]string{"inverted": "false", "power": "13"}}, {Id: 9221, Properties: map[string]string{"inverted": "false", "power": "14"}}, {Id: 9222, Properties: map[string]string{"inverted": "false", "power": "15"}}}}, "minecraft:dead_brain_coral": {States: []{{Id: 12815, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12816, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:dead_brain_coral_block": {States: []{{Id: 12804, Properties: map[string]string{}}}}, "minecraft:dead_brain_coral_fan": {States: []{{Id: 12835, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12836, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:dead_brain_coral_wall_fan": {States: []{{Id: 12861, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 12862, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 12863, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 12864, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 12865, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 12866, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 12867, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 12868, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:dead_bubble_coral": {States: []{{Id: 12817, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12818, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:dead_bubble_coral_block": {States: []{{Id: 12805, Properties: map[string]string{}}}}, "minecraft:dead_bubble_coral_fan": {States: []{{Id: 12837, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12838, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:dead_bubble_coral_wall_fan": {States: []{{Id: 12869, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 12870, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 12871, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 12872, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 12873, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 12874, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 12875, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 12876, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:dead_bush": {States: []{{Id: 2007, Properties: map[string]string{}}}}, "minecraft:dead_fire_coral": {States: []{{Id: 12819, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12820, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:dead_fire_coral_block": {States: []{{Id: 12806, Properties: map[string]string{}}}}, "minecraft:dead_fire_coral_fan": {States: []{{Id: 12839, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12840, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:dead_fire_coral_wall_fan": {States: []{{Id: 12877, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 12878, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 12879, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 12880, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 12881, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 12882, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 12883, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 12884, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:dead_horn_coral": {States: []{{Id: 12821, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12822, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:dead_horn_coral_block": {States: []{{Id: 12807, Properties: map[string]string{}}}}, "minecraft:dead_horn_coral_fan": {States: []{{Id: 12841, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12842, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:dead_horn_coral_wall_fan": {States: []{{Id: 12885, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 12886, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 12887, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 12888, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 12889, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 12890, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 12891, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 12892, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:dead_tube_coral": {States: []{{Id: 12813, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12814, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:dead_tube_coral_block": {States: []{{Id: 12803, Properties: map[string]string{}}}}, "minecraft:dead_tube_coral_fan": {States: []{{Id: 12833, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12834, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:dead_tube_coral_wall_fan": {States: []{{Id: 12853, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 12854, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 12855, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 12856, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 12857, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 12858, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 12859, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 12860, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:decorated_pot": {States: []{{Id: 26574, Properties: map[string]string{"cracked": "true", "facing": "north", "waterlogged": "true"}}, {Id: 26575, Properties: map[string]string{"cracked": "true", "facing": "north", "waterlogged": "false"}}, {Id: 26576, Properties: map[string]string{"cracked": "true", "facing": "south", "waterlogged": "true"}}, {Id: 26577, Properties: map[string]string{"cracked": "true", "facing": "south", "waterlogged": "false"}}, {Id: 26578, Properties: map[string]string{"cracked": "true", "facing": "west", "waterlogged": "true"}}, {Id: 26579, Properties: map[string]string{"cracked": "true", "facing": "west", "waterlogged": "false"}}, {Id: 26580, Properties: map[string]string{"cracked": "true", "facing": "east", "waterlogged": "true"}}, {Id: 26581, Properties: map[string]string{"cracked": "true", "facing": "east", "waterlogged": "false"}}, {Id: 26582, Properties: map[string]string{"cracked": "false", "facing": "north", "waterlogged": "true"}}, {Id: 26583, Properties: map[string]string{"cracked": "false", "facing": "north", "waterlogged": "false"}}, {Id: 26584, Properties: map[string]string{"cracked": "false", "facing": "south", "waterlogged": "true"}}, {Id: 26585, Properties: map[string]string{"cracked": "false", "facing": "south", "waterlogged": "false"}}, {Id: 26586, Properties: map[string]string{"cracked": "false", "facing": "west", "waterlogged": "true"}}, {Id: 26587, Properties: map[string]string{"cracked": "false", "facing": "west", "waterlogged": "false"}}, {Id: 26588, Properties: map[string]string{"cracked": "false", "facing": "east", "waterlogged": "true"}}, {Id: 26589, Properties: map[string]string{"cracked": "false", "facing": "east", "waterlogged": "false"}}}}, "minecraft:deepslate": {States: []{{Id: 24904, Properties: map[string]string{"axis": "x"}}, {Id: 24905, Properties: map[string]string{"axis": "y"}}, {Id: 24906, Properties: map[string]string{"axis": "z"}}}}, "minecraft:deepslate_brick_slab": {States: []{{Id: 26221, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 26222, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 26223, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 26224, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 26225, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 26226, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:deepslate_brick_stairs": {States: []{{Id: 26141, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 26142, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 26143, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 26144, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 26145, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 26146, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 26147, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 26148, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 26149, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 26150, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 26151, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 26152, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 26153, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 26154, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 26155, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 26156, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 26157, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 26158, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 26159, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 26160, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 26161, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 26162, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 26163, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 26164, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 26165, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 26166, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 26167, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 26168, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 26169, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 26170, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 26171, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 26172, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 26173, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 26174, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 26175, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 26176, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 26177, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 26178, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 26179, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 26180, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 26181, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 26182, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 26183, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 26184, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 26185, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 26186, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 26187, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 26188, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 26189, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 26190, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 26191, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 26192, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 26193, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 26194, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 26195, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 26196, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 26197, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 26198, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 26199, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 26200, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 26201, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 26202, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 26203, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 26204, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 26205, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 26206, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 26207, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 26208, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 26209, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 26210, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 26211, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 26212, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 26213, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 26214, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 26215, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 26216, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 26217, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 26218, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 26219, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 26220, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:deepslate_brick_wall": {States: []{{Id: 26227, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26228, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26229, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26230, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26231, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26232, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26233, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26234, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26235, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26236, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26237, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26238, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26239, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26240, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26241, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26242, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26243, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26244, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26245, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26246, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26247, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26248, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26249, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26250, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26251, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26252, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26253, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26254, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26255, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26256, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26257, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26258, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26259, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26260, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26261, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26262, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26263, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26264, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26265, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26266, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26267, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26268, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26269, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26270, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26271, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26272, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26273, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26274, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26275, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26276, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26277, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26278, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26279, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26280, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26281, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26282, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26283, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26284, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26285, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26286, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26287, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26288, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26289, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26290, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26291, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26292, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26293, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26294, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26295, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26296, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26297, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26298, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26299, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26300, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26301, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26302, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26303, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26304, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26305, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26306, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26307, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26308, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26309, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26310, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26311, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26312, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26313, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26314, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26315, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26316, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26317, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26318, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26319, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26320, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26321, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26322, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26323, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26324, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26325, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26326, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26327, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26328, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26329, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26330, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26331, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26332, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26333, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26334, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26335, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26336, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26337, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26338, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26339, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26340, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26341, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26342, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26343, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26344, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26345, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26346, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26347, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26348, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26349, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26350, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26351, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26352, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26353, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26354, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26355, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26356, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26357, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26358, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26359, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26360, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26361, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26362, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26363, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26364, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26365, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26366, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26367, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26368, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26369, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26370, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26371, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26372, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26373, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26374, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26375, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26376, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26377, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26378, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26379, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26380, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26381, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26382, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26383, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26384, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26385, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26386, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26387, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26388, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26389, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26390, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26391, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26392, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26393, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26394, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26395, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26396, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26397, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26398, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26399, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26400, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26401, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26402, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26403, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26404, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26405, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26406, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26407, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26408, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26409, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26410, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26411, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26412, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26413, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26414, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26415, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26416, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26417, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26418, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26419, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26420, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26421, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26422, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26423, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26424, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26425, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26426, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26427, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26428, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26429, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26430, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26431, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26432, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26433, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26434, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26435, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26436, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26437, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26438, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26439, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26440, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26441, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26442, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26443, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26444, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26445, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26446, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26447, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26448, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26449, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26450, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26451, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26452, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26453, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26454, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26455, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26456, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26457, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26458, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26459, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26460, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26461, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26462, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26463, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26464, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26465, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26466, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26467, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26468, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26469, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26470, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26471, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26472, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26473, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26474, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26475, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26476, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26477, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26478, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26479, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26480, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26481, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26482, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26483, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26484, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26485, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26486, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26487, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26488, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26489, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26490, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26491, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26492, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26493, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26494, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26495, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26496, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26497, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26498, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26499, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26500, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26501, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26502, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26503, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26504, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26505, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26506, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26507, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26508, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26509, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26510, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26511, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26512, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26513, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26514, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26515, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26516, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26517, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26518, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26519, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26520, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26521, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26522, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26523, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26524, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26525, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26526, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26527, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26528, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26529, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26530, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26531, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26532, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26533, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26534, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26535, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26536, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26537, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26538, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26539, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26540, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26541, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26542, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26543, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26544, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26545, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26546, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26547, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26548, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26549, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26550, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:deepslate_bricks": {States: []{{Id: 26140, Properties: map[string]string{}}}}, "minecraft:deepslate_coal_ore": {States: []{{Id: 128, Properties: map[string]string{}}}}, "minecraft:deepslate_copper_ore": {States: []{{Id: 22943, Properties: map[string]string{}}}}, "minecraft:deepslate_diamond_ore": {States: []{{Id: 4275, Properties: map[string]string{}}}}, "minecraft:deepslate_emerald_ore": {States: []{{Id: 7512, Properties: map[string]string{}}}}, "minecraft:deepslate_gold_ore": {States: []{{Id: 124, Properties: map[string]string{}}}}, "minecraft:deepslate_iron_ore": {States: []{{Id: 126, Properties: map[string]string{}}}}, "minecraft:deepslate_lapis_ore": {States: []{{Id: 521, Properties: map[string]string{}}}}, "minecraft:deepslate_redstone_ore": {States: []{{Id: 5736, Properties: map[string]string{"lit": "true"}}, {Id: 5737, Properties: map[string]string{"lit": "false"}}}}, "minecraft:deepslate_tile_slab": {States: []{{Id: 25810, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 25811, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 25812, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 25813, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 25814, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 25815, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:deepslate_tile_stairs": {States: []{{Id: 25730, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 25731, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 25732, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25733, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25734, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25735, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25736, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25737, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25738, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25739, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25740, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 25741, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 25742, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25743, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25744, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25745, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25746, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25747, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25748, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25749, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25750, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 25751, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 25752, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25753, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25754, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25755, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25756, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25757, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25758, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25759, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25760, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 25761, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 25762, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25763, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25764, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25765, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25766, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25767, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25768, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25769, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25770, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 25771, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 25772, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25773, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25774, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25775, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25776, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25777, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25778, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25779, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25780, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 25781, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 25782, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25783, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25784, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25785, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25786, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25787, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25788, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25789, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25790, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 25791, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 25792, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25793, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25794, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25795, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25796, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25797, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25798, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25799, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25800, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 25801, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 25802, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25803, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25804, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25805, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25806, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25807, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25808, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25809, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:deepslate_tile_wall": {States: []{{Id: 25816, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25817, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25818, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25819, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25820, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25821, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25822, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25823, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25824, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25825, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25826, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25827, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25828, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25829, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25830, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25831, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25832, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25833, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25834, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25835, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25836, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25837, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25838, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25839, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25840, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25841, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25842, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25843, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25844, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25845, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25846, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25847, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25848, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25849, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25850, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25851, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25852, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25853, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25854, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25855, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25856, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25857, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25858, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25859, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25860, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25861, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25862, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25863, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25864, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25865, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25866, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25867, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25868, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25869, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25870, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25871, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25872, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25873, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25874, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25875, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25876, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25877, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25878, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25879, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25880, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25881, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25882, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25883, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25884, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25885, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25886, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25887, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25888, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25889, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25890, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25891, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25892, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25893, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25894, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25895, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25896, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25897, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25898, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25899, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25900, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25901, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25902, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25903, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25904, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25905, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25906, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25907, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25908, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25909, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25910, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25911, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25912, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25913, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25914, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25915, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25916, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25917, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25918, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25919, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25920, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25921, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25922, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25923, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25924, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25925, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25926, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25927, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25928, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25929, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25930, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25931, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25932, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25933, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25934, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25935, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25936, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25937, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25938, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25939, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25940, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25941, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25942, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25943, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25944, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25945, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25946, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25947, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25948, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25949, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25950, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25951, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25952, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25953, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25954, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25955, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25956, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25957, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25958, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25959, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25960, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25961, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25962, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25963, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25964, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25965, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25966, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25967, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25968, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25969, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25970, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25971, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25972, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25973, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25974, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25975, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25976, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25977, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25978, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25979, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25980, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25981, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25982, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25983, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25984, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25985, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25986, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25987, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25988, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25989, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25990, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25991, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25992, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25993, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25994, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25995, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25996, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25997, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25998, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25999, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26000, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26001, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26002, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26003, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26004, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26005, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26006, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26007, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26008, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26009, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26010, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26011, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26012, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26013, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26014, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26015, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26016, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26017, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26018, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26019, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26020, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26021, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26022, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26023, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26024, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26025, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26026, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26027, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26028, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26029, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26030, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26031, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26032, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26033, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26034, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26035, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26036, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26037, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26038, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26039, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26040, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26041, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26042, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26043, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26044, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26045, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26046, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26047, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26048, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26049, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26050, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26051, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26052, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26053, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26054, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26055, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26056, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26057, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26058, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26059, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26060, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26061, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26062, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26063, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26064, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26065, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26066, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26067, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26068, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26069, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26070, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26071, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26072, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26073, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26074, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26075, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26076, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26077, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26078, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26079, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26080, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26081, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26082, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26083, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26084, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26085, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26086, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26087, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26088, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26089, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26090, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26091, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26092, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26093, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26094, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26095, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26096, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26097, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26098, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26099, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26100, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26101, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26102, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26103, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26104, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26105, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26106, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26107, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26108, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26109, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26110, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26111, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26112, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26113, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26114, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26115, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26116, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26117, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26118, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26119, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26120, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26121, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26122, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26123, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26124, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26125, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26126, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26127, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 26128, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 26129, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 26130, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 26131, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 26132, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 26133, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 26134, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 26135, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 26136, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 26137, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 26138, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 26139, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:deepslate_tiles": {States: []{{Id: 25729, Properties: map[string]string{}}}}, "minecraft:detector_rail": {States: []{{Id: 1968, Properties: map[string]string{"powered": "true", "shape": "north_south", "waterlogged": "true"}}, {Id: 1969, Properties: map[string]string{"powered": "true", "shape": "north_south", "waterlogged": "false"}}, {Id: 1970, Properties: map[string]string{"powered": "true", "shape": "east_west", "waterlogged": "true"}}, {Id: 1971, Properties: map[string]string{"powered": "true", "shape": "east_west", "waterlogged": "false"}}, {Id: 1972, Properties: map[string]string{"powered": "true", "shape": "ascending_east", "waterlogged": "true"}}, {Id: 1973, Properties: map[string]string{"powered": "true", "shape": "ascending_east", "waterlogged": "false"}}, {Id: 1974, Properties: map[string]string{"powered": "true", "shape": "ascending_west", "waterlogged": "true"}}, {Id: 1975, Properties: map[string]string{"powered": "true", "shape": "ascending_west", "waterlogged": "false"}}, {Id: 1976, Properties: map[string]string{"powered": "true", "shape": "ascending_north", "waterlogged": "true"}}, {Id: 1977, Properties: map[string]string{"powered": "true", "shape": "ascending_north", "waterlogged": "false"}}, {Id: 1978, Properties: map[string]string{"powered": "true", "shape": "ascending_south", "waterlogged": "true"}}, {Id: 1979, Properties: map[string]string{"powered": "true", "shape": "ascending_south", "waterlogged": "false"}}, {Id: 1980, Properties: map[string]string{"powered": "false", "shape": "north_south", "waterlogged": "true"}}, {Id: 1981, Properties: map[string]string{"powered": "false", "shape": "north_south", "waterlogged": "false"}}, {Id: 1982, Properties: map[string]string{"powered": "false", "shape": "east_west", "waterlogged": "true"}}, {Id: 1983, Properties: map[string]string{"powered": "false", "shape": "east_west", "waterlogged": "false"}}, {Id: 1984, Properties: map[string]string{"powered": "false", "shape": "ascending_east", "waterlogged": "true"}}, {Id: 1985, Properties: map[string]string{"powered": "false", "shape": "ascending_east", "waterlogged": "false"}}, {Id: 1986, Properties: map[string]string{"powered": "false", "shape": "ascending_west", "waterlogged": "true"}}, {Id: 1987, Properties: map[string]string{"powered": "false", "shape": "ascending_west", "waterlogged": "false"}}, {Id: 1988, Properties: map[string]string{"powered": "false", "shape": "ascending_north", "waterlogged": "true"}}, {Id: 1989, Properties: map[string]string{"powered": "false", "shape": "ascending_north", "waterlogged": "false"}}, {Id: 1990, Properties: map[string]string{"powered": "false", "shape": "ascending_south", "waterlogged": "true"}}, {Id: 1991, Properties: map[string]string{"powered": "false", "shape": "ascending_south", "waterlogged": "false"}}}}, "minecraft:diamond_block": {States: []{{Id: 4276, Properties: map[string]string{}}}}, "minecraft:diamond_ore": {States: []{{Id: 4274, Properties: map[string]string{}}}}, "minecraft:diorite": {States: []{{Id: 4, Properties: map[string]string{}}}}, "minecraft:diorite_slab": {States: []{{Id: 14154, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14155, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14156, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14157, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14158, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14159, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:diorite_stairs": {States: []{{Id: 14002, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 14003, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 14004, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 14005, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 14006, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 14007, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 14008, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 14009, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 14010, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 14011, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 14012, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 14013, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 14014, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 14015, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 14016, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 14017, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 14018, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 14019, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 14020, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 14021, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 14022, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 14023, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 14024, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 14025, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 14026, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 14027, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 14028, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 14029, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 14030, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 14031, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 14032, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 14033, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 14034, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 14035, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 14036, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 14037, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 14038, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 14039, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 14040, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 14041, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 14042, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 14043, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 14044, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 14045, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 14046, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 14047, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 14048, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 14049, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 14050, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 14051, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 14052, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 14053, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 14054, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 14055, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 14056, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 14057, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 14058, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 14059, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 14060, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 14061, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 14062, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 14063, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 14064, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 14065, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 14066, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 14067, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 14068, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 14069, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 14070, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 14071, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 14072, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 14073, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 14074, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 14075, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 14076, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 14077, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 14078, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 14079, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 14080, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 14081, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:diorite_wall": {States: []{{Id: 18048, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18049, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18050, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18051, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18052, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18053, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18054, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18055, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18056, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18057, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18058, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18059, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18060, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18061, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18062, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18063, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18064, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18065, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18066, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18067, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18068, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18069, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18070, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18071, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18072, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18073, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18074, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18075, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18076, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18077, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18078, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18079, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18080, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18081, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18082, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18083, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18084, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18085, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18086, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18087, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18088, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18089, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18090, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18091, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18092, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18093, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18094, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18095, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18096, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18097, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18098, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18099, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18100, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18101, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18102, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18103, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18104, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18105, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18106, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18107, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18108, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18109, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18110, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18111, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18112, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18113, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18114, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18115, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18116, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18117, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18118, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18119, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18120, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18121, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18122, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18123, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18124, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18125, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18126, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18127, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18128, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18129, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18130, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18131, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18132, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18133, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18134, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18135, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18136, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18137, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18138, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18139, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18140, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18141, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18142, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18143, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18144, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18145, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18146, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18147, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18148, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18149, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18150, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18151, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18152, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18153, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18154, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18155, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18156, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18157, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18158, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18159, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18160, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18161, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18162, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18163, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18164, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18165, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18166, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18167, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18168, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18169, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18170, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18171, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18172, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18173, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18174, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18175, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18176, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18177, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18178, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18179, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18180, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18181, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18182, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18183, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18184, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18185, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18186, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18187, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18188, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18189, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18190, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18191, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18192, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18193, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18194, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18195, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18196, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18197, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18198, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18199, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18200, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18201, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18202, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18203, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18204, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18205, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18206, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18207, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18208, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18209, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18210, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18211, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18212, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18213, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18214, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18215, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18216, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18217, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18218, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18219, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18220, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18221, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18222, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18223, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18224, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18225, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18226, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18227, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18228, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18229, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18230, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18231, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18232, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18233, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18234, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18235, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18236, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18237, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18238, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18239, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18240, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18241, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18242, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18243, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18244, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18245, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18246, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18247, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18248, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18249, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18250, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18251, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18252, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18253, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18254, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18255, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18256, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18257, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18258, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18259, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18260, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18261, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18262, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18263, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18264, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18265, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18266, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18267, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18268, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18269, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18270, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18271, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18272, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18273, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18274, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18275, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18276, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18277, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18278, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18279, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18280, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18281, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18282, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18283, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18284, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18285, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18286, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18287, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18288, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18289, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18290, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18291, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18292, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18293, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18294, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18295, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18296, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18297, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18298, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18299, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18300, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18301, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18302, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18303, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18304, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18305, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18306, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18307, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18308, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18309, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18310, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18311, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18312, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18313, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18314, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18315, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18316, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18317, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18318, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18319, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18320, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18321, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18322, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18323, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18324, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18325, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18326, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18327, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18328, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18329, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18330, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18331, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18332, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18333, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18334, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18335, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18336, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18337, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18338, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18339, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18340, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18341, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18342, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18343, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18344, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18345, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18346, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18347, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18348, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18349, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18350, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18351, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18352, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18353, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18354, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18355, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18356, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18357, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18358, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18359, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18360, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18361, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18362, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18363, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18364, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18365, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18366, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18367, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18368, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18369, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18370, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18371, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:dirt": {States: []{{Id: 10, Properties: map[string]string{}}}}, "minecraft:dirt_path": {States: []{{Id: 12513, Properties: map[string]string{}}}}, "minecraft:dispenser": {States: []{{Id: 523, Properties: map[string]string{"facing": "north", "triggered": "true"}}, {Id: 524, Properties: map[string]string{"facing": "north", "triggered": "false"}}, {Id: 525, Properties: map[string]string{"facing": "east", "triggered": "true"}}, {Id: 526, Properties: map[string]string{"facing": "east", "triggered": "false"}}, {Id: 527, Properties: map[string]string{"facing": "south", "triggered": "true"}}, {Id: 528, Properties: map[string]string{"facing": "south", "triggered": "false"}}, {Id: 529, Properties: map[string]string{"facing": "west", "triggered": "true"}}, {Id: 530, Properties: map[string]string{"facing": "west", "triggered": "false"}}, {Id: 531, Properties: map[string]string{"facing": "up", "triggered": "true"}}, {Id: 532, Properties: map[string]string{"facing": "up", "triggered": "false"}}, {Id: 533, Properties: map[string]string{"facing": "down", "triggered": "true"}}, {Id: 534, Properties: map[string]string{"facing": "down", "triggered": "false"}}}}, "minecraft:dragon_egg": {States: []{{Id: 7416, Properties: map[string]string{}}}}, "minecraft:dragon_head": {States: []{{Id: 9027, Properties: map[string]string{"powered": "true", "rotation": "0"}}, {Id: 9028, Properties: map[string]string{"powered": "true", "rotation": "1"}}, {Id: 9029, Properties: map[string]string{"powered": "true", "rotation": "2"}}, {Id: 9030, Properties: map[string]string{"powered": "true", "rotation": "3"}}, {Id: 9031, Properties: map[string]string{"powered": "true", "rotation": "4"}}, {Id: 9032, Properties: map[string]string{"powered": "true", "rotation": "5"}}, {Id: 9033, Properties: map[string]string{"powered": "true", "rotation": "6"}}, {Id: 9034, Properties: map[string]string{"powered": "true", "rotation": "7"}}, {Id: 9035, Properties: map[string]string{"powered": "true", "rotation": "8"}}, {Id: 9036, Properties: map[string]string{"powered": "true", "rotation": "9"}}, {Id: 9037, Properties: map[string]string{"powered": "true", "rotation": "10"}}, {Id: 9038, Properties: map[string]string{"powered": "true", "rotation": "11"}}, {Id: 9039, Properties: map[string]string{"powered": "true", "rotation": "12"}}, {Id: 9040, Properties: map[string]string{"powered": "true", "rotation": "13"}}, {Id: 9041, Properties: map[string]string{"powered": "true", "rotation": "14"}}, {Id: 9042, Properties: map[string]string{"powered": "true", "rotation": "15"}}, {Id: 9043, Properties: map[string]string{"powered": "false", "rotation": "0"}}, {Id: 9044, Properties: map[string]string{"powered": "false", "rotation": "1"}}, {Id: 9045, Properties: map[string]string{"powered": "false", "rotation": "2"}}, {Id: 9046, Properties: map[string]string{"powered": "false", "rotation": "3"}}, {Id: 9047, Properties: map[string]string{"powered": "false", "rotation": "4"}}, {Id: 9048, Properties: map[string]string{"powered": "false", "rotation": "5"}}, {Id: 9049, Properties: map[string]string{"powered": "false", "rotation": "6"}}, {Id: 9050, Properties: map[string]string{"powered": "false", "rotation": "7"}}, {Id: 9051, Properties: map[string]string{"powered": "false", "rotation": "8"}}, {Id: 9052, Properties: map[string]string{"powered": "false", "rotation": "9"}}, {Id: 9053, Properties: map[string]string{"powered": "false", "rotation": "10"}}, {Id: 9054, Properties: map[string]string{"powered": "false", "rotation": "11"}}, {Id: 9055, Properties: map[string]string{"powered": "false", "rotation": "12"}}, {Id: 9056, Properties: map[string]string{"powered": "false", "rotation": "13"}}, {Id: 9057, Properties: map[string]string{"powered": "false", "rotation": "14"}}, {Id: 9058, Properties: map[string]string{"powered": "false", "rotation": "15"}}}}, "minecraft:dragon_wall_head": {States: []{{Id: 9059, Properties: map[string]string{"facing": "north", "powered": "true"}}, {Id: 9060, Properties: map[string]string{"facing": "north", "powered": "false"}}, {Id: 9061, Properties: map[string]string{"facing": "south", "powered": "true"}}, {Id: 9062, Properties: map[string]string{"facing": "south", "powered": "false"}}, {Id: 9063, Properties: map[string]string{"facing": "west", "powered": "true"}}, {Id: 9064, Properties: map[string]string{"facing": "west", "powered": "false"}}, {Id: 9065, Properties: map[string]string{"facing": "east", "powered": "true"}}, {Id: 9066, Properties: map[string]string{"facing": "east", "powered": "false"}}}}, "minecraft:dried_kelp_block": {States: []{{Id: 12787, Properties: map[string]string{}}}}, "minecraft:dripstone_block": {States: []{{Id: 24768, Properties: map[string]string{}}}}, "minecraft:dropper": {States: []{{Id: 9344, Properties: map[string]string{"facing": "north", "triggered": "true"}}, {Id: 9345, Properties: map[string]string{"facing": "north", "triggered": "false"}}, {Id: 9346, Properties: map[string]string{"facing": "east", "triggered": "true"}}, {Id: 9347, Properties: map[string]string{"facing": "east", "triggered": "false"}}, {Id: 9348, Properties: map[string]string{"facing": "south", "triggered": "true"}}, {Id: 9349, Properties: map[string]string{"facing": "south", "triggered": "false"}}, {Id: 9350, Properties: map[string]string{"facing": "west", "triggered": "true"}}, {Id: 9351, Properties: map[string]string{"facing": "west", "triggered": "false"}}, {Id: 9352, Properties: map[string]string{"facing": "up", "triggered": "true"}}, {Id: 9353, Properties: map[string]string{"facing": "up", "triggered": "false"}}, {Id: 9354, Properties: map[string]string{"facing": "down", "triggered": "true"}}, {Id: 9355, Properties: map[string]string{"facing": "down", "triggered": "false"}}}}, "minecraft:emerald_block": {States: []{{Id: 7665, Properties: map[string]string{}}}}, "minecraft:emerald_ore": {States: []{{Id: 7511, Properties: map[string]string{}}}}, "minecraft:enchanting_table": {States: []{{Id: 7389, Properties: map[string]string{}}}}, "minecraft:end_gateway": {States: []{{Id: 12514, Properties: map[string]string{}}}}, "minecraft:end_portal": {States: []{{Id: 7406, Properties: map[string]string{}}}}, "minecraft:end_portal_frame": {States: []{{Id: 7407, Properties: map[string]string{"eye": "true", "facing": "north"}}, {Id: 7408, Properties: map[string]string{"eye": "true", "facing": "south"}}, {Id: 7409, Properties: map[string]string{"eye": "true", "facing": "west"}}, {Id: 7410, Properties: map[string]string{"eye": "true", "facing": "east"}}, {Id: 7411, Properties: map[string]string{"eye": "false", "facing": "north"}}, {Id: 7412, Properties: map[string]string{"eye": "false", "facing": "south"}}, {Id: 7413, Properties: map[string]string{"eye": "false", "facing": "west"}}, {Id: 7414, Properties: map[string]string{"eye": "false", "facing": "east"}}}}, "minecraft:end_rod": {States: []{{Id: 12334, Properties: map[string]string{"facing": "north"}}, {Id: 12335, Properties: map[string]string{"facing": "east"}}, {Id: 12336, Properties: map[string]string{"facing": "south"}}, {Id: 12337, Properties: map[string]string{"facing": "west"}}, {Id: 12338, Properties: map[string]string{"facing": "up"}}, {Id: 12339, Properties: map[string]string{"facing": "down"}}}}, "minecraft:end_stone": {States: []{{Id: 7415, Properties: map[string]string{}}}}, "minecraft:end_stone_brick_slab": {States: []{{Id: 14112, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14113, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14114, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14115, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14116, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14117, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:end_stone_brick_stairs": {States: []{{Id: 13362, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13363, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13364, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13365, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13366, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13367, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13368, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13369, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13370, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13371, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13372, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13373, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13374, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13375, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13376, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13377, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13378, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13379, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13380, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13381, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13382, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13383, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13384, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13385, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13386, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13387, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13388, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13389, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13390, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13391, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13392, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13393, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13394, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13395, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13396, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13397, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13398, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13399, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13400, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13401, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13402, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13403, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13404, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13405, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13406, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13407, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13408, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13409, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13410, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13411, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13412, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13413, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13414, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13415, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13416, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13417, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13418, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13419, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13420, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13421, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13422, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13423, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13424, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13425, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13426, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13427, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13428, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13429, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13430, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13431, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13432, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13433, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13434, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13435, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13436, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13437, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13438, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13439, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13440, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13441, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:end_stone_brick_wall": {States: []{{Id: 17724, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17725, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17726, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17727, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17728, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17729, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17730, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17731, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17732, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17733, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17734, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17735, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17736, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17737, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17738, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17739, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17740, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17741, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17742, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17743, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17744, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17745, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17746, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17747, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17748, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17749, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17750, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17751, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17752, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17753, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17754, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17755, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17756, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17757, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17758, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17759, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17760, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17761, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17762, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17763, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17764, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17765, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17766, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17767, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17768, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17769, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17770, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17771, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17772, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17773, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17774, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17775, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17776, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17777, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17778, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17779, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17780, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17781, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17782, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17783, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17784, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17785, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17786, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17787, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17788, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17789, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17790, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17791, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17792, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17793, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17794, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17795, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17796, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17797, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17798, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17799, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17800, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17801, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17802, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17803, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17804, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17805, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17806, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17807, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17808, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17809, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17810, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17811, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17812, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17813, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17814, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17815, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17816, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17817, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17818, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17819, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17820, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17821, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17822, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17823, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17824, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17825, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17826, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17827, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17828, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17829, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17830, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17831, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17832, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17833, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17834, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17835, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17836, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17837, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17838, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17839, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17840, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17841, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17842, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17843, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17844, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17845, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17846, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17847, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17848, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17849, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17850, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17851, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17852, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17853, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17854, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17855, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17856, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17857, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17858, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17859, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17860, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17861, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17862, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17863, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17864, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17865, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17866, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17867, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17868, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17869, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17870, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17871, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17872, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17873, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17874, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17875, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17876, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17877, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17878, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17879, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17880, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17881, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17882, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17883, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17884, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17885, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17886, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17887, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17888, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17889, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17890, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17891, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17892, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17893, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17894, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17895, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17896, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17897, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17898, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17899, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17900, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17901, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17902, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17903, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17904, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17905, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17906, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17907, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17908, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17909, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17910, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17911, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17912, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17913, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17914, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17915, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17916, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17917, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17918, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17919, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17920, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17921, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17922, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17923, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17924, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17925, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17926, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17927, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17928, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17929, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17930, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17931, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17932, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17933, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17934, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17935, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17936, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17937, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17938, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17939, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17940, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17941, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17942, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17943, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17944, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17945, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17946, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17947, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17948, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17949, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17950, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17951, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17952, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17953, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17954, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17955, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17956, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17957, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17958, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17959, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17960, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17961, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17962, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17963, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17964, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17965, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17966, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17967, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17968, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17969, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17970, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17971, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17972, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17973, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17974, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17975, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17976, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17977, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17978, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17979, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17980, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17981, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17982, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17983, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17984, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17985, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17986, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17987, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17988, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17989, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17990, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17991, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17992, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17993, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17994, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17995, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17996, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17997, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17998, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17999, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18000, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18001, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18002, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18003, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18004, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18005, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18006, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18007, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18008, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18009, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18010, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18011, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18012, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18013, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18014, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18015, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18016, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18017, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18018, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18019, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18020, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18021, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18022, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18023, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18024, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18025, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18026, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18027, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18028, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18029, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18030, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18031, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18032, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18033, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18034, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18035, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 18036, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 18037, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 18038, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 18039, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 18040, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 18041, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 18042, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 18043, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 18044, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 18045, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 18046, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 18047, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:end_stone_bricks": {States: []{{Id: 12494, Properties: map[string]string{}}}}, "minecraft:ender_chest": {States: []{{Id: 7513, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 7514, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 7515, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 7516, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 7517, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 7518, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 7519, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 7520, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:exposed_chiseled_copper": {States: []{{Id: 22950, Properties: map[string]string{}}}}, "minecraft:exposed_copper": {States: []{{Id: 22939, Properties: map[string]string{}}}}, "minecraft:exposed_copper_bulb": {States: []{{Id: 24696, Properties: map[string]string{"lit": "true", "powered": "true"}}, {Id: 24697, Properties: map[string]string{"lit": "true", "powered": "false"}}, {Id: 24698, Properties: map[string]string{"lit": "false", "powered": "true"}}, {Id: 24699, Properties: map[string]string{"lit": "false", "powered": "false"}}}}, "minecraft:exposed_copper_door": {States: []{{Id: 23716, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23717, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23718, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23719, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23720, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23721, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23722, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23723, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23724, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23725, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23726, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23727, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23728, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23729, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23730, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23731, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23732, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23733, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23734, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23735, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23736, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23737, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23738, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23739, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23740, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23741, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23742, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23743, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23744, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23745, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23746, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23747, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23748, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23749, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23750, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23751, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23752, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23753, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23754, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23755, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23756, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23757, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23758, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23759, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23760, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23761, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23762, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23763, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23764, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23765, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23766, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23767, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23768, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23769, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23770, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23771, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23772, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23773, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23774, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23775, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23776, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23777, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23778, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23779, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:exposed_copper_grate": {States: []{{Id: 24678, Properties: map[string]string{"waterlogged": "true"}}, {Id: 24679, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:exposed_copper_trapdoor": {States: []{{Id: 24228, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24229, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24230, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24231, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24232, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24233, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24234, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24235, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24236, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24237, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24238, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24239, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24240, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24241, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24242, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24243, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24244, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24245, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24246, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24247, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24248, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24249, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24250, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24251, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24252, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24253, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24254, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24255, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24256, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24257, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24258, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24259, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24260, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24261, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24262, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24263, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24264, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24265, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24266, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24267, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24268, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24269, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24270, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24271, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24272, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24273, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24274, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24275, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24276, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24277, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24278, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24279, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24280, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24281, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24282, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24283, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24284, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24285, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24286, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24287, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24288, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24289, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24290, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24291, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:exposed_cut_copper": {States: []{{Id: 22946, Properties: map[string]string{}}}}, "minecraft:exposed_cut_copper_slab": {States: []{{Id: 23288, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 23289, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 23290, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 23291, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 23292, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 23293, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:exposed_cut_copper_stairs": {States: []{{Id: 23116, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23117, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23118, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23119, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23120, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23121, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23122, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23123, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23124, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23125, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23126, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23127, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23128, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23129, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23130, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23131, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23132, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23133, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23134, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23135, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23136, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23137, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23138, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23139, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23140, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23141, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23142, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23143, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23144, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23145, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23146, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23147, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23148, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23149, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23150, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23151, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23152, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23153, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23154, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23155, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23156, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23157, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23158, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23159, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23160, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23161, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23162, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23163, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23164, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23165, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23166, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23167, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23168, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23169, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23170, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23171, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23172, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23173, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23174, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23175, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23176, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23177, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23178, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23179, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23180, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23181, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23182, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23183, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23184, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23185, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23186, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23187, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23188, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23189, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23190, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23191, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23192, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23193, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23194, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23195, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:farmland": {States: []{{Id: 4286, Properties: map[string]string{"moisture": "0"}}, {Id: 4287, Properties: map[string]string{"moisture": "1"}}, {Id: 4288, Properties: map[string]string{"moisture": "2"}}, {Id: 4289, Properties: map[string]string{"moisture": "3"}}, {Id: 4290, Properties: map[string]string{"moisture": "4"}}, {Id: 4291, Properties: map[string]string{"moisture": "5"}}, {Id: 4292, Properties: map[string]string{"moisture": "6"}}, {Id: 4293, Properties: map[string]string{"moisture": "7"}}}}, "minecraft:fern": {States: []{{Id: 2006, Properties: map[string]string{}}}}, "minecraft:fire": {States: []{{Id: 2360, Properties: map[string]string{"age": "0", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2361, Properties: map[string]string{"age": "0", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2362, Properties: map[string]string{"age": "0", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2363, Properties: map[string]string{"age": "0", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2364, Properties: map[string]string{"age": "0", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2365, Properties: map[string]string{"age": "0", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2366, Properties: map[string]string{"age": "0", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2367, Properties: map[string]string{"age": "0", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2368, Properties: map[string]string{"age": "0", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2369, Properties: map[string]string{"age": "0", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2370, Properties: map[string]string{"age": "0", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2371, Properties: map[string]string{"age": "0", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2372, Properties: map[string]string{"age": "0", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2373, Properties: map[string]string{"age": "0", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2374, Properties: map[string]string{"age": "0", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2375, Properties: map[string]string{"age": "0", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2376, Properties: map[string]string{"age": "0", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2377, Properties: map[string]string{"age": "0", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2378, Properties: map[string]string{"age": "0", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2379, Properties: map[string]string{"age": "0", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2380, Properties: map[string]string{"age": "0", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2381, Properties: map[string]string{"age": "0", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2382, Properties: map[string]string{"age": "0", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2383, Properties: map[string]string{"age": "0", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2384, Properties: map[string]string{"age": "0", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2385, Properties: map[string]string{"age": "0", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2386, Properties: map[string]string{"age": "0", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2387, Properties: map[string]string{"age": "0", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2388, Properties: map[string]string{"age": "0", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2389, Properties: map[string]string{"age": "0", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2390, Properties: map[string]string{"age": "0", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2391, Properties: map[string]string{"age": "0", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2392, Properties: map[string]string{"age": "1", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2393, Properties: map[string]string{"age": "1", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2394, Properties: map[string]string{"age": "1", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2395, Properties: map[string]string{"age": "1", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2396, Properties: map[string]string{"age": "1", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2397, Properties: map[string]string{"age": "1", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2398, Properties: map[string]string{"age": "1", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2399, Properties: map[string]string{"age": "1", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2400, Properties: map[string]string{"age": "1", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2401, Properties: map[string]string{"age": "1", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2402, Properties: map[string]string{"age": "1", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2403, Properties: map[string]string{"age": "1", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2404, Properties: map[string]string{"age": "1", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2405, Properties: map[string]string{"age": "1", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2406, Properties: map[string]string{"age": "1", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2407, Properties: map[string]string{"age": "1", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2408, Properties: map[string]string{"age": "1", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2409, Properties: map[string]string{"age": "1", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2410, Properties: map[string]string{"age": "1", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2411, Properties: map[string]string{"age": "1", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2412, Properties: map[string]string{"age": "1", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2413, Properties: map[string]string{"age": "1", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2414, Properties: map[string]string{"age": "1", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2415, Properties: map[string]string{"age": "1", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2416, Properties: map[string]string{"age": "1", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2417, Properties: map[string]string{"age": "1", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2418, Properties: map[string]string{"age": "1", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2419, Properties: map[string]string{"age": "1", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2420, Properties: map[string]string{"age": "1", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2421, Properties: map[string]string{"age": "1", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2422, Properties: map[string]string{"age": "1", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2423, Properties: map[string]string{"age": "1", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2424, Properties: map[string]string{"age": "2", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2425, Properties: map[string]string{"age": "2", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2426, Properties: map[string]string{"age": "2", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2427, Properties: map[string]string{"age": "2", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2428, Properties: map[string]string{"age": "2", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2429, Properties: map[string]string{"age": "2", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2430, Properties: map[string]string{"age": "2", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2431, Properties: map[string]string{"age": "2", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2432, Properties: map[string]string{"age": "2", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2433, Properties: map[string]string{"age": "2", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2434, Properties: map[string]string{"age": "2", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2435, Properties: map[string]string{"age": "2", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2436, Properties: map[string]string{"age": "2", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2437, Properties: map[string]string{"age": "2", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2438, Properties: map[string]string{"age": "2", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2439, Properties: map[string]string{"age": "2", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2440, Properties: map[string]string{"age": "2", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2441, Properties: map[string]string{"age": "2", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2442, Properties: map[string]string{"age": "2", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2443, Properties: map[string]string{"age": "2", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2444, Properties: map[string]string{"age": "2", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2445, Properties: map[string]string{"age": "2", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2446, Properties: map[string]string{"age": "2", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2447, Properties: map[string]string{"age": "2", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2448, Properties: map[string]string{"age": "2", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2449, Properties: map[string]string{"age": "2", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2450, Properties: map[string]string{"age": "2", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2451, Properties: map[string]string{"age": "2", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2452, Properties: map[string]string{"age": "2", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2453, Properties: map[string]string{"age": "2", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2454, Properties: map[string]string{"age": "2", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2455, Properties: map[string]string{"age": "2", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2456, Properties: map[string]string{"age": "3", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2457, Properties: map[string]string{"age": "3", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2458, Properties: map[string]string{"age": "3", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2459, Properties: map[string]string{"age": "3", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2460, Properties: map[string]string{"age": "3", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2461, Properties: map[string]string{"age": "3", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2462, Properties: map[string]string{"age": "3", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2463, Properties: map[string]string{"age": "3", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2464, Properties: map[string]string{"age": "3", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2465, Properties: map[string]string{"age": "3", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2466, Properties: map[string]string{"age": "3", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2467, Properties: map[string]string{"age": "3", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2468, Properties: map[string]string{"age": "3", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2469, Properties: map[string]string{"age": "3", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2470, Properties: map[string]string{"age": "3", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2471, Properties: map[string]string{"age": "3", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2472, Properties: map[string]string{"age": "3", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2473, Properties: map[string]string{"age": "3", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2474, Properties: map[string]string{"age": "3", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2475, Properties: map[string]string{"age": "3", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2476, Properties: map[string]string{"age": "3", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2477, Properties: map[string]string{"age": "3", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2478, Properties: map[string]string{"age": "3", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2479, Properties: map[string]string{"age": "3", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2480, Properties: map[string]string{"age": "3", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2481, Properties: map[string]string{"age": "3", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2482, Properties: map[string]string{"age": "3", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2483, Properties: map[string]string{"age": "3", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2484, Properties: map[string]string{"age": "3", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2485, Properties: map[string]string{"age": "3", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2486, Properties: map[string]string{"age": "3", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2487, Properties: map[string]string{"age": "3", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2488, Properties: map[string]string{"age": "4", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2489, Properties: map[string]string{"age": "4", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2490, Properties: map[string]string{"age": "4", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2491, Properties: map[string]string{"age": "4", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2492, Properties: map[string]string{"age": "4", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2493, Properties: map[string]string{"age": "4", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2494, Properties: map[string]string{"age": "4", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2495, Properties: map[string]string{"age": "4", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2496, Properties: map[string]string{"age": "4", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2497, Properties: map[string]string{"age": "4", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2498, Properties: map[string]string{"age": "4", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2499, Properties: map[string]string{"age": "4", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2500, Properties: map[string]string{"age": "4", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2501, Properties: map[string]string{"age": "4", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2502, Properties: map[string]string{"age": "4", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2503, Properties: map[string]string{"age": "4", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2504, Properties: map[string]string{"age": "4", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2505, Properties: map[string]string{"age": "4", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2506, Properties: map[string]string{"age": "4", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2507, Properties: map[string]string{"age": "4", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2508, Properties: map[string]string{"age": "4", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2509, Properties: map[string]string{"age": "4", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2510, Properties: map[string]string{"age": "4", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2511, Properties: map[string]string{"age": "4", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2512, Properties: map[string]string{"age": "4", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2513, Properties: map[string]string{"age": "4", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2514, Properties: map[string]string{"age": "4", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2515, Properties: map[string]string{"age": "4", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2516, Properties: map[string]string{"age": "4", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2517, Properties: map[string]string{"age": "4", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2518, Properties: map[string]string{"age": "4", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2519, Properties: map[string]string{"age": "4", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2520, Properties: map[string]string{"age": "5", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2521, Properties: map[string]string{"age": "5", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2522, Properties: map[string]string{"age": "5", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2523, Properties: map[string]string{"age": "5", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2524, Properties: map[string]string{"age": "5", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2525, Properties: map[string]string{"age": "5", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2526, Properties: map[string]string{"age": "5", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2527, Properties: map[string]string{"age": "5", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2528, Properties: map[string]string{"age": "5", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2529, Properties: map[string]string{"age": "5", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2530, Properties: map[string]string{"age": "5", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2531, Properties: map[string]string{"age": "5", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2532, Properties: map[string]string{"age": "5", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2533, Properties: map[string]string{"age": "5", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2534, Properties: map[string]string{"age": "5", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2535, Properties: map[string]string{"age": "5", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2536, Properties: map[string]string{"age": "5", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2537, Properties: map[string]string{"age": "5", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2538, Properties: map[string]string{"age": "5", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2539, Properties: map[string]string{"age": "5", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2540, Properties: map[string]string{"age": "5", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2541, Properties: map[string]string{"age": "5", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2542, Properties: map[string]string{"age": "5", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2543, Properties: map[string]string{"age": "5", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2544, Properties: map[string]string{"age": "5", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2545, Properties: map[string]string{"age": "5", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2546, Properties: map[string]string{"age": "5", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2547, Properties: map[string]string{"age": "5", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2548, Properties: map[string]string{"age": "5", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2549, Properties: map[string]string{"age": "5", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2550, Properties: map[string]string{"age": "5", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2551, Properties: map[string]string{"age": "5", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2552, Properties: map[string]string{"age": "6", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2553, Properties: map[string]string{"age": "6", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2554, Properties: map[string]string{"age": "6", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2555, Properties: map[string]string{"age": "6", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2556, Properties: map[string]string{"age": "6", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2557, Properties: map[string]string{"age": "6", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2558, Properties: map[string]string{"age": "6", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2559, Properties: map[string]string{"age": "6", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2560, Properties: map[string]string{"age": "6", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2561, Properties: map[string]string{"age": "6", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2562, Properties: map[string]string{"age": "6", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2563, Properties: map[string]string{"age": "6", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2564, Properties: map[string]string{"age": "6", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2565, Properties: map[string]string{"age": "6", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2566, Properties: map[string]string{"age": "6", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2567, Properties: map[string]string{"age": "6", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2568, Properties: map[string]string{"age": "6", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2569, Properties: map[string]string{"age": "6", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2570, Properties: map[string]string{"age": "6", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2571, Properties: map[string]string{"age": "6", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2572, Properties: map[string]string{"age": "6", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2573, Properties: map[string]string{"age": "6", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2574, Properties: map[string]string{"age": "6", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2575, Properties: map[string]string{"age": "6", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2576, Properties: map[string]string{"age": "6", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2577, Properties: map[string]string{"age": "6", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2578, Properties: map[string]string{"age": "6", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2579, Properties: map[string]string{"age": "6", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2580, Properties: map[string]string{"age": "6", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2581, Properties: map[string]string{"age": "6", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2582, Properties: map[string]string{"age": "6", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2583, Properties: map[string]string{"age": "6", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2584, Properties: map[string]string{"age": "7", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2585, Properties: map[string]string{"age": "7", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2586, Properties: map[string]string{"age": "7", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2587, Properties: map[string]string{"age": "7", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2588, Properties: map[string]string{"age": "7", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2589, Properties: map[string]string{"age": "7", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2590, Properties: map[string]string{"age": "7", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2591, Properties: map[string]string{"age": "7", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2592, Properties: map[string]string{"age": "7", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2593, Properties: map[string]string{"age": "7", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2594, Properties: map[string]string{"age": "7", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2595, Properties: map[string]string{"age": "7", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2596, Properties: map[string]string{"age": "7", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2597, Properties: map[string]string{"age": "7", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2598, Properties: map[string]string{"age": "7", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2599, Properties: map[string]string{"age": "7", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2600, Properties: map[string]string{"age": "7", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2601, Properties: map[string]string{"age": "7", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2602, Properties: map[string]string{"age": "7", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2603, Properties: map[string]string{"age": "7", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2604, Properties: map[string]string{"age": "7", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2605, Properties: map[string]string{"age": "7", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2606, Properties: map[string]string{"age": "7", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2607, Properties: map[string]string{"age": "7", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2608, Properties: map[string]string{"age": "7", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2609, Properties: map[string]string{"age": "7", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2610, Properties: map[string]string{"age": "7", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2611, Properties: map[string]string{"age": "7", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2612, Properties: map[string]string{"age": "7", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2613, Properties: map[string]string{"age": "7", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2614, Properties: map[string]string{"age": "7", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2615, Properties: map[string]string{"age": "7", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2616, Properties: map[string]string{"age": "8", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2617, Properties: map[string]string{"age": "8", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2618, Properties: map[string]string{"age": "8", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2619, Properties: map[string]string{"age": "8", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2620, Properties: map[string]string{"age": "8", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2621, Properties: map[string]string{"age": "8", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2622, Properties: map[string]string{"age": "8", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2623, Properties: map[string]string{"age": "8", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2624, Properties: map[string]string{"age": "8", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2625, Properties: map[string]string{"age": "8", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2626, Properties: map[string]string{"age": "8", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2627, Properties: map[string]string{"age": "8", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2628, Properties: map[string]string{"age": "8", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2629, Properties: map[string]string{"age": "8", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2630, Properties: map[string]string{"age": "8", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2631, Properties: map[string]string{"age": "8", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2632, Properties: map[string]string{"age": "8", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2633, Properties: map[string]string{"age": "8", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2634, Properties: map[string]string{"age": "8", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2635, Properties: map[string]string{"age": "8", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2636, Properties: map[string]string{"age": "8", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2637, Properties: map[string]string{"age": "8", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2638, Properties: map[string]string{"age": "8", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2639, Properties: map[string]string{"age": "8", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2640, Properties: map[string]string{"age": "8", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2641, Properties: map[string]string{"age": "8", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2642, Properties: map[string]string{"age": "8", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2643, Properties: map[string]string{"age": "8", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2644, Properties: map[string]string{"age": "8", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2645, Properties: map[string]string{"age": "8", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2646, Properties: map[string]string{"age": "8", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2647, Properties: map[string]string{"age": "8", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2648, Properties: map[string]string{"age": "9", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2649, Properties: map[string]string{"age": "9", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2650, Properties: map[string]string{"age": "9", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2651, Properties: map[string]string{"age": "9", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2652, Properties: map[string]string{"age": "9", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2653, Properties: map[string]string{"age": "9", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2654, Properties: map[string]string{"age": "9", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2655, Properties: map[string]string{"age": "9", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2656, Properties: map[string]string{"age": "9", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2657, Properties: map[string]string{"age": "9", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2658, Properties: map[string]string{"age": "9", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2659, Properties: map[string]string{"age": "9", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2660, Properties: map[string]string{"age": "9", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2661, Properties: map[string]string{"age": "9", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2662, Properties: map[string]string{"age": "9", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2663, Properties: map[string]string{"age": "9", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2664, Properties: map[string]string{"age": "9", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2665, Properties: map[string]string{"age": "9", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2666, Properties: map[string]string{"age": "9", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2667, Properties: map[string]string{"age": "9", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2668, Properties: map[string]string{"age": "9", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2669, Properties: map[string]string{"age": "9", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2670, Properties: map[string]string{"age": "9", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2671, Properties: map[string]string{"age": "9", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2672, Properties: map[string]string{"age": "9", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2673, Properties: map[string]string{"age": "9", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2674, Properties: map[string]string{"age": "9", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2675, Properties: map[string]string{"age": "9", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2676, Properties: map[string]string{"age": "9", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2677, Properties: map[string]string{"age": "9", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2678, Properties: map[string]string{"age": "9", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2679, Properties: map[string]string{"age": "9", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2680, Properties: map[string]string{"age": "10", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2681, Properties: map[string]string{"age": "10", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2682, Properties: map[string]string{"age": "10", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2683, Properties: map[string]string{"age": "10", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2684, Properties: map[string]string{"age": "10", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2685, Properties: map[string]string{"age": "10", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2686, Properties: map[string]string{"age": "10", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2687, Properties: map[string]string{"age": "10", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2688, Properties: map[string]string{"age": "10", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2689, Properties: map[string]string{"age": "10", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2690, Properties: map[string]string{"age": "10", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2691, Properties: map[string]string{"age": "10", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2692, Properties: map[string]string{"age": "10", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2693, Properties: map[string]string{"age": "10", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2694, Properties: map[string]string{"age": "10", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2695, Properties: map[string]string{"age": "10", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2696, Properties: map[string]string{"age": "10", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2697, Properties: map[string]string{"age": "10", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2698, Properties: map[string]string{"age": "10", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2699, Properties: map[string]string{"age": "10", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2700, Properties: map[string]string{"age": "10", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2701, Properties: map[string]string{"age": "10", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2702, Properties: map[string]string{"age": "10", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2703, Properties: map[string]string{"age": "10", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2704, Properties: map[string]string{"age": "10", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2705, Properties: map[string]string{"age": "10", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2706, Properties: map[string]string{"age": "10", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2707, Properties: map[string]string{"age": "10", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2708, Properties: map[string]string{"age": "10", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2709, Properties: map[string]string{"age": "10", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2710, Properties: map[string]string{"age": "10", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2711, Properties: map[string]string{"age": "10", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2712, Properties: map[string]string{"age": "11", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2713, Properties: map[string]string{"age": "11", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2714, Properties: map[string]string{"age": "11", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2715, Properties: map[string]string{"age": "11", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2716, Properties: map[string]string{"age": "11", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2717, Properties: map[string]string{"age": "11", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2718, Properties: map[string]string{"age": "11", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2719, Properties: map[string]string{"age": "11", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2720, Properties: map[string]string{"age": "11", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2721, Properties: map[string]string{"age": "11", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2722, Properties: map[string]string{"age": "11", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2723, Properties: map[string]string{"age": "11", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2724, Properties: map[string]string{"age": "11", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2725, Properties: map[string]string{"age": "11", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2726, Properties: map[string]string{"age": "11", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2727, Properties: map[string]string{"age": "11", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2728, Properties: map[string]string{"age": "11", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2729, Properties: map[string]string{"age": "11", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2730, Properties: map[string]string{"age": "11", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2731, Properties: map[string]string{"age": "11", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2732, Properties: map[string]string{"age": "11", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2733, Properties: map[string]string{"age": "11", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2734, Properties: map[string]string{"age": "11", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2735, Properties: map[string]string{"age": "11", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2736, Properties: map[string]string{"age": "11", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2737, Properties: map[string]string{"age": "11", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2738, Properties: map[string]string{"age": "11", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2739, Properties: map[string]string{"age": "11", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2740, Properties: map[string]string{"age": "11", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2741, Properties: map[string]string{"age": "11", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2742, Properties: map[string]string{"age": "11", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2743, Properties: map[string]string{"age": "11", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2744, Properties: map[string]string{"age": "12", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2745, Properties: map[string]string{"age": "12", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2746, Properties: map[string]string{"age": "12", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2747, Properties: map[string]string{"age": "12", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2748, Properties: map[string]string{"age": "12", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2749, Properties: map[string]string{"age": "12", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2750, Properties: map[string]string{"age": "12", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2751, Properties: map[string]string{"age": "12", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2752, Properties: map[string]string{"age": "12", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2753, Properties: map[string]string{"age": "12", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2754, Properties: map[string]string{"age": "12", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2755, Properties: map[string]string{"age": "12", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2756, Properties: map[string]string{"age": "12", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2757, Properties: map[string]string{"age": "12", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2758, Properties: map[string]string{"age": "12", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2759, Properties: map[string]string{"age": "12", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2760, Properties: map[string]string{"age": "12", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2761, Properties: map[string]string{"age": "12", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2762, Properties: map[string]string{"age": "12", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2763, Properties: map[string]string{"age": "12", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2764, Properties: map[string]string{"age": "12", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2765, Properties: map[string]string{"age": "12", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2766, Properties: map[string]string{"age": "12", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2767, Properties: map[string]string{"age": "12", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2768, Properties: map[string]string{"age": "12", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2769, Properties: map[string]string{"age": "12", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2770, Properties: map[string]string{"age": "12", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2771, Properties: map[string]string{"age": "12", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2772, Properties: map[string]string{"age": "12", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2773, Properties: map[string]string{"age": "12", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2774, Properties: map[string]string{"age": "12", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2775, Properties: map[string]string{"age": "12", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2776, Properties: map[string]string{"age": "13", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2777, Properties: map[string]string{"age": "13", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2778, Properties: map[string]string{"age": "13", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2779, Properties: map[string]string{"age": "13", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2780, Properties: map[string]string{"age": "13", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2781, Properties: map[string]string{"age": "13", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2782, Properties: map[string]string{"age": "13", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2783, Properties: map[string]string{"age": "13", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2784, Properties: map[string]string{"age": "13", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2785, Properties: map[string]string{"age": "13", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2786, Properties: map[string]string{"age": "13", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2787, Properties: map[string]string{"age": "13", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2788, Properties: map[string]string{"age": "13", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2789, Properties: map[string]string{"age": "13", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2790, Properties: map[string]string{"age": "13", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2791, Properties: map[string]string{"age": "13", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2792, Properties: map[string]string{"age": "13", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2793, Properties: map[string]string{"age": "13", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2794, Properties: map[string]string{"age": "13", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2795, Properties: map[string]string{"age": "13", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2796, Properties: map[string]string{"age": "13", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2797, Properties: map[string]string{"age": "13", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2798, Properties: map[string]string{"age": "13", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2799, Properties: map[string]string{"age": "13", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2800, Properties: map[string]string{"age": "13", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2801, Properties: map[string]string{"age": "13", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2802, Properties: map[string]string{"age": "13", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2803, Properties: map[string]string{"age": "13", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2804, Properties: map[string]string{"age": "13", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2805, Properties: map[string]string{"age": "13", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2806, Properties: map[string]string{"age": "13", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2807, Properties: map[string]string{"age": "13", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2808, Properties: map[string]string{"age": "14", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2809, Properties: map[string]string{"age": "14", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2810, Properties: map[string]string{"age": "14", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2811, Properties: map[string]string{"age": "14", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2812, Properties: map[string]string{"age": "14", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2813, Properties: map[string]string{"age": "14", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2814, Properties: map[string]string{"age": "14", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2815, Properties: map[string]string{"age": "14", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2816, Properties: map[string]string{"age": "14", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2817, Properties: map[string]string{"age": "14", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2818, Properties: map[string]string{"age": "14", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2819, Properties: map[string]string{"age": "14", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2820, Properties: map[string]string{"age": "14", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2821, Properties: map[string]string{"age": "14", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2822, Properties: map[string]string{"age": "14", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2823, Properties: map[string]string{"age": "14", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2824, Properties: map[string]string{"age": "14", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2825, Properties: map[string]string{"age": "14", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2826, Properties: map[string]string{"age": "14", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2827, Properties: map[string]string{"age": "14", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2828, Properties: map[string]string{"age": "14", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2829, Properties: map[string]string{"age": "14", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2830, Properties: map[string]string{"age": "14", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2831, Properties: map[string]string{"age": "14", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2832, Properties: map[string]string{"age": "14", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2833, Properties: map[string]string{"age": "14", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2834, Properties: map[string]string{"age": "14", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2835, Properties: map[string]string{"age": "14", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2836, Properties: map[string]string{"age": "14", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2837, Properties: map[string]string{"age": "14", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2838, Properties: map[string]string{"age": "14", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2839, Properties: map[string]string{"age": "14", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2840, Properties: map[string]string{"age": "15", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2841, Properties: map[string]string{"age": "15", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2842, Properties: map[string]string{"age": "15", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2843, Properties: map[string]string{"age": "15", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2844, Properties: map[string]string{"age": "15", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2845, Properties: map[string]string{"age": "15", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2846, Properties: map[string]string{"age": "15", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2847, Properties: map[string]string{"age": "15", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2848, Properties: map[string]string{"age": "15", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2849, Properties: map[string]string{"age": "15", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2850, Properties: map[string]string{"age": "15", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2851, Properties: map[string]string{"age": "15", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2852, Properties: map[string]string{"age": "15", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2853, Properties: map[string]string{"age": "15", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2854, Properties: map[string]string{"age": "15", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2855, Properties: map[string]string{"age": "15", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 2856, Properties: map[string]string{"age": "15", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 2857, Properties: map[string]string{"age": "15", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 2858, Properties: map[string]string{"age": "15", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 2859, Properties: map[string]string{"age": "15", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 2860, Properties: map[string]string{"age": "15", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 2861, Properties: map[string]string{"age": "15", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 2862, Properties: map[string]string{"age": "15", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 2863, Properties: map[string]string{"age": "15", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 2864, Properties: map[string]string{"age": "15", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 2865, Properties: map[string]string{"age": "15", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 2866, Properties: map[string]string{"age": "15", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 2867, Properties: map[string]string{"age": "15", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 2868, Properties: map[string]string{"age": "15", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 2869, Properties: map[string]string{"age": "15", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 2870, Properties: map[string]string{"age": "15", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 2871, Properties: map[string]string{"age": "15", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}}}, "minecraft:fire_coral": {States: []{{Id: 12829, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12830, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:fire_coral_block": {States: []{{Id: 12811, Properties: map[string]string{}}}}, "minecraft:fire_coral_fan": {States: []{{Id: 12849, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12850, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:fire_coral_wall_fan": {States: []{{Id: 12917, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 12918, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 12919, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 12920, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 12921, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 12922, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 12923, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 12924, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:fletching_table": {States: []{{Id: 18437, Properties: map[string]string{}}}}, "minecraft:flower_pot": {States: []{{Id: 8567, Properties: map[string]string{}}}}, "minecraft:flowering_azalea": {States: []{{Id: 24825, Properties: map[string]string{}}}}, "minecraft:flowering_azalea_leaves": {States: []{{Id: 489, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "true"}}, {Id: 490, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "false"}}, {Id: 491, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "true"}}, {Id: 492, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "false"}}, {Id: 493, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "true"}}, {Id: 494, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "false"}}, {Id: 495, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "true"}}, {Id: 496, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "false"}}, {Id: 497, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "true"}}, {Id: 498, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "false"}}, {Id: 499, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "true"}}, {Id: 500, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "false"}}, {Id: 501, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "true"}}, {Id: 502, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "false"}}, {Id: 503, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "true"}}, {Id: 504, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "false"}}, {Id: 505, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "true"}}, {Id: 506, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "false"}}, {Id: 507, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "true"}}, {Id: 508, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "false"}}, {Id: 509, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "true"}}, {Id: 510, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "false"}}, {Id: 511, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "true"}}, {Id: 512, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "false"}}, {Id: 513, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "true"}}, {Id: 514, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "false"}}, {Id: 515, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "true"}}, {Id: 516, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "false"}}}}, "minecraft:frogspawn": {States: []{{Id: 26572, Properties: map[string]string{}}}}, "minecraft:frosted_ice": {States: []{{Id: 12539, Properties: map[string]string{"age": "0"}}, {Id: 12540, Properties: map[string]string{"age": "1"}}, {Id: 12541, Properties: map[string]string{"age": "2"}}, {Id: 12542, Properties: map[string]string{"age": "3"}}}}, "minecraft:furnace": {States: []{{Id: 4294, Properties: map[string]string{"facing": "north", "lit": "true"}}, {Id: 4295, Properties: map[string]string{"facing": "north", "lit": "false"}}, {Id: 4296, Properties: map[string]string{"facing": "south", "lit": "true"}}, {Id: 4297, Properties: map[string]string{"facing": "south", "lit": "false"}}, {Id: 4298, Properties: map[string]string{"facing": "west", "lit": "true"}}, {Id: 4299, Properties: map[string]string{"facing": "west", "lit": "false"}}, {Id: 4300, Properties: map[string]string{"facing": "east", "lit": "true"}}, {Id: 4301, Properties: map[string]string{"facing": "east", "lit": "false"}}}}, "minecraft:gilded_blackstone": {States: []{{Id: 20285, Properties: map[string]string{}}}}, "minecraft:glass": {States: []{{Id: 519, Properties: map[string]string{}}}}, "minecraft:glass_pane": {States: []{{Id: 6779, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 6780, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 6781, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 6782, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 6783, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 6784, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 6785, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 6786, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 6787, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 6788, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 6789, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 6790, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 6791, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 6792, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 6793, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 6794, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 6795, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 6796, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 6797, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 6798, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 6799, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 6800, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 6801, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 6802, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 6803, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 6804, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 6805, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 6806, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 6807, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 6808, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 6809, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 6810, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:glow_lichen": {States: []{{Id: 6869, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6870, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6871, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6872, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6873, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6874, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6875, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6876, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6877, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6878, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6879, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6880, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6881, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6882, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6883, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6884, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6885, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6886, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6887, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6888, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6889, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6890, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6891, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6892, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6893, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6894, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6895, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6896, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6897, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6898, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6899, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6900, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6901, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6902, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6903, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6904, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6905, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6906, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6907, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6908, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6909, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6910, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6911, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6912, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6913, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6914, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6915, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6916, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6917, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6918, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6919, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6920, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6921, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6922, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6923, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6924, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6925, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6926, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6927, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6928, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6929, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6930, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6931, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6932, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6933, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6934, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6935, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6936, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6937, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6938, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6939, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6940, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6941, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6942, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6943, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6944, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6945, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6946, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6947, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6948, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6949, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6950, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6951, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6952, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6953, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6954, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6955, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6956, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6957, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6958, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6959, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6960, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6961, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6962, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6963, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6964, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6965, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6966, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6967, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6968, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6969, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6970, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6971, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6972, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6973, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6974, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6975, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6976, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6977, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6978, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6979, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6980, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6981, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6982, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6983, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6984, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6985, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6986, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6987, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6988, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 6989, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 6990, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 6991, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 6992, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 6993, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 6994, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 6995, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 6996, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:glowstone": {States: []{{Id: 5863, Properties: map[string]string{}}}}, "minecraft:gold_block": {States: []{{Id: 2091, Properties: map[string]string{}}}}, "minecraft:gold_ore": {States: []{{Id: 123, Properties: map[string]string{}}}}, "minecraft:granite": {States: []{{Id: 2, Properties: map[string]string{}}}}, "minecraft:granite_slab": {States: []{{Id: 14130, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14131, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14132, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14133, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14134, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14135, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:granite_stairs": {States: []{{Id: 13682, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13683, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13684, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13685, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13686, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13687, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13688, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13689, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13690, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13691, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13692, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13693, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13694, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13695, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13696, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13697, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13698, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13699, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13700, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13701, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13702, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13703, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13704, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13705, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13706, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13707, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13708, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13709, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13710, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13711, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13712, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13713, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13714, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13715, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13716, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13717, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13718, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13719, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13720, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13721, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13722, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13723, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13724, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13725, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13726, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13727, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13728, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13729, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13730, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13731, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13732, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13733, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13734, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13735, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13736, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13737, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13738, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13739, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13740, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13741, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13742, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13743, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13744, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13745, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13746, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13747, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13748, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13749, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13750, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13751, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13752, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13753, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13754, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13755, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13756, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13757, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13758, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13759, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13760, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13761, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:granite_wall": {States: []{{Id: 15456, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15457, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15458, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15459, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15460, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15461, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15462, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15463, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15464, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15465, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15466, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15467, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15468, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15469, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15470, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15471, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15472, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15473, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15474, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15475, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15476, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15477, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15478, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15479, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15480, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15481, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15482, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15483, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15484, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15485, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15486, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15487, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15488, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15489, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15490, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15491, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15492, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15493, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15494, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15495, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15496, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15497, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15498, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15499, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15500, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15501, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15502, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15503, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15504, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15505, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15506, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15507, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15508, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15509, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15510, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15511, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15512, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15513, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15514, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15515, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15516, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15517, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15518, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15519, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15520, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15521, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15522, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15523, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15524, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15525, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15526, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15527, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15528, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15529, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15530, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15531, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15532, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15533, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15534, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15535, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15536, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15537, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15538, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15539, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15540, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15541, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15542, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15543, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15544, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15545, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15546, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15547, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15548, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15549, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15550, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15551, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15552, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15553, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15554, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15555, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15556, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15557, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15558, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15559, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15560, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15561, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15562, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15563, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15564, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15565, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15566, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15567, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15568, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15569, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15570, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15571, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15572, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15573, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15574, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15575, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15576, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15577, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15578, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15579, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15580, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15581, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15582, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15583, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15584, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15585, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15586, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15587, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15588, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15589, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15590, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15591, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15592, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15593, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15594, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15595, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15596, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15597, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15598, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15599, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15600, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15601, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15602, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15603, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15604, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15605, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15606, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15607, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15608, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15609, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15610, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15611, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15612, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15613, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15614, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15615, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15616, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15617, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15618, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15619, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15620, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15621, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15622, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15623, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15624, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15625, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15626, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15627, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15628, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15629, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15630, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15631, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15632, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15633, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15634, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15635, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15636, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15637, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15638, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15639, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15640, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15641, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15642, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15643, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15644, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15645, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15646, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15647, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15648, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15649, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15650, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15651, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15652, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15653, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15654, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15655, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15656, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15657, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15658, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15659, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15660, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15661, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15662, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15663, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15664, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15665, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15666, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15667, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15668, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15669, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15670, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15671, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15672, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15673, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15674, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15675, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15676, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15677, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15678, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15679, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15680, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15681, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15682, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15683, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15684, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15685, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15686, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15687, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15688, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15689, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15690, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15691, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15692, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15693, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15694, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15695, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15696, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15697, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15698, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15699, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15700, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15701, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15702, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15703, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15704, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15705, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15706, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15707, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15708, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15709, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15710, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15711, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15712, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15713, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15714, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15715, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15716, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15717, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15718, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15719, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15720, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15721, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15722, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15723, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15724, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15725, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15726, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15727, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15728, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15729, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15730, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15731, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15732, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15733, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15734, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15735, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15736, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15737, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15738, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15739, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15740, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15741, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15742, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15743, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15744, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15745, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15746, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15747, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15748, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15749, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15750, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15751, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15752, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15753, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15754, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15755, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15756, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15757, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15758, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15759, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15760, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15761, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15762, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15763, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15764, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15765, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15766, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15767, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15768, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15769, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15770, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15771, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15772, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15773, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15774, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15775, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15776, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15777, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15778, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15779, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:grass_block": {States: []{{Id: 8, Properties: map[string]string{"snowy": "true"}}, {Id: 9, Properties: map[string]string{"snowy": "false"}}}}, "minecraft:gravel": {States: []{{Id: 118, Properties: map[string]string{}}}}, "minecraft:gray_banner": {States: []{{Id: 10871, Properties: map[string]string{"rotation": "0"}}, {Id: 10872, Properties: map[string]string{"rotation": "1"}}, {Id: 10873, Properties: map[string]string{"rotation": "2"}}, {Id: 10874, Properties: map[string]string{"rotation": "3"}}, {Id: 10875, Properties: map[string]string{"rotation": "4"}}, {Id: 10876, Properties: map[string]string{"rotation": "5"}}, {Id: 10877, Properties: map[string]string{"rotation": "6"}}, {Id: 10878, Properties: map[string]string{"rotation": "7"}}, {Id: 10879, Properties: map[string]string{"rotation": "8"}}, {Id: 10880, Properties: map[string]string{"rotation": "9"}}, {Id: 10881, Properties: map[string]string{"rotation": "10"}}, {Id: 10882, Properties: map[string]string{"rotation": "11"}}, {Id: 10883, Properties: map[string]string{"rotation": "12"}}, {Id: 10884, Properties: map[string]string{"rotation": "13"}}, {Id: 10885, Properties: map[string]string{"rotation": "14"}}, {Id: 10886, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:gray_bed": {States: []{{Id: 1800, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1801, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1802, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1803, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1804, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1805, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1806, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1807, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1808, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1809, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1810, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1811, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1812, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1813, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1814, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1815, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:gray_candle": {States: []{{Id: 20853, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20854, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20855, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20856, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20857, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20858, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20859, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20860, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20861, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20862, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20863, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20864, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20865, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20866, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20867, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20868, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:gray_candle_cake": {States: []{{Id: 21013, Properties: map[string]string{"lit": "true"}}, {Id: 21014, Properties: map[string]string{"lit": "false"}}}}, "minecraft:gray_carpet": {States: []{{Id: 10735, Properties: map[string]string{}}}}, "minecraft:gray_concrete": {States: []{{Id: 12735, Properties: map[string]string{}}}}, "minecraft:gray_concrete_powder": {States: []{{Id: 12751, Properties: map[string]string{}}}}, "minecraft:gray_glazed_terracotta": {States: []{{Id: 12692, Properties: map[string]string{"facing": "north"}}, {Id: 12693, Properties: map[string]string{"facing": "south"}}, {Id: 12694, Properties: map[string]string{"facing": "west"}}, {Id: 12695, Properties: map[string]string{"facing": "east"}}}}, "minecraft:gray_shulker_box": {States: []{{Id: 12610, Properties: map[string]string{"facing": "north"}}, {Id: 12611, Properties: map[string]string{"facing": "east"}}, {Id: 12612, Properties: map[string]string{"facing": "south"}}, {Id: 12613, Properties: map[string]string{"facing": "west"}}, {Id: 12614, Properties: map[string]string{"facing": "up"}}, {Id: 12615, Properties: map[string]string{"facing": "down"}}}}, "minecraft:gray_stained_glass": {States: []{{Id: 5952, Properties: map[string]string{}}}}, "minecraft:gray_stained_glass_pane": {States: []{{Id: 9596, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9597, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9598, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9599, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9600, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9601, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9602, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9603, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9604, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9605, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9606, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9607, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9608, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9609, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9610, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9611, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9612, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9613, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9614, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9615, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9616, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9617, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9618, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9619, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9620, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9621, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9622, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9623, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9624, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9625, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9626, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9627, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:gray_terracotta": {States: []{{Id: 9363, Properties: map[string]string{}}}}, "minecraft:gray_wall_banner": {States: []{{Id: 11043, Properties: map[string]string{"facing": "north"}}, {Id: 11044, Properties: map[string]string{"facing": "south"}}, {Id: 11045, Properties: map[string]string{"facing": "west"}}, {Id: 11046, Properties: map[string]string{"facing": "east"}}}}, "minecraft:gray_wool": {States: []{{Id: 2054, Properties: map[string]string{}}}}, "minecraft:green_banner": {States: []{{Id: 10967, Properties: map[string]string{"rotation": "0"}}, {Id: 10968, Properties: map[string]string{"rotation": "1"}}, {Id: 10969, Properties: map[string]string{"rotation": "2"}}, {Id: 10970, Properties: map[string]string{"rotation": "3"}}, {Id: 10971, Properties: map[string]string{"rotation": "4"}}, {Id: 10972, Properties: map[string]string{"rotation": "5"}}, {Id: 10973, Properties: map[string]string{"rotation": "6"}}, {Id: 10974, Properties: map[string]string{"rotation": "7"}}, {Id: 10975, Properties: map[string]string{"rotation": "8"}}, {Id: 10976, Properties: map[string]string{"rotation": "9"}}, {Id: 10977, Properties: map[string]string{"rotation": "10"}}, {Id: 10978, Properties: map[string]string{"rotation": "11"}}, {Id: 10979, Properties: map[string]string{"rotation": "12"}}, {Id: 10980, Properties: map[string]string{"rotation": "13"}}, {Id: 10981, Properties: map[string]string{"rotation": "14"}}, {Id: 10982, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:green_bed": {States: []{{Id: 1896, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1897, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1898, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1899, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1900, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1901, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1902, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1903, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1904, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1905, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1906, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1907, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1908, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1909, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1910, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1911, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:green_candle": {States: []{{Id: 20949, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20950, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20951, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20952, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20953, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20954, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20955, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20956, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20957, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20958, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20959, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20960, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20961, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20962, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20963, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20964, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:green_candle_cake": {States: []{{Id: 21025, Properties: map[string]string{"lit": "true"}}, {Id: 21026, Properties: map[string]string{"lit": "false"}}}}, "minecraft:green_carpet": {States: []{{Id: 10741, Properties: map[string]string{}}}}, "minecraft:green_concrete": {States: []{{Id: 12741, Properties: map[string]string{}}}}, "minecraft:green_concrete_powder": {States: []{{Id: 12757, Properties: map[string]string{}}}}, "minecraft:green_glazed_terracotta": {States: []{{Id: 12716, Properties: map[string]string{"facing": "north"}}, {Id: 12717, Properties: map[string]string{"facing": "south"}}, {Id: 12718, Properties: map[string]string{"facing": "west"}}, {Id: 12719, Properties: map[string]string{"facing": "east"}}}}, "minecraft:green_shulker_box": {States: []{{Id: 12646, Properties: map[string]string{"facing": "north"}}, {Id: 12647, Properties: map[string]string{"facing": "east"}}, {Id: 12648, Properties: map[string]string{"facing": "south"}}, {Id: 12649, Properties: map[string]string{"facing": "west"}}, {Id: 12650, Properties: map[string]string{"facing": "up"}}, {Id: 12651, Properties: map[string]string{"facing": "down"}}}}, "minecraft:green_stained_glass": {States: []{{Id: 5958, Properties: map[string]string{}}}}, "minecraft:green_stained_glass_pane": {States: []{{Id: 9788, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9789, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9790, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9791, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9792, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9793, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9794, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9795, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9796, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9797, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9798, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9799, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9800, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9801, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9802, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9803, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9804, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9805, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9806, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9807, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9808, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9809, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9810, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9811, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9812, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9813, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9814, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9815, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9816, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9817, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9818, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9819, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:green_terracotta": {States: []{{Id: 9369, Properties: map[string]string{}}}}, "minecraft:green_wall_banner": {States: []{{Id: 11067, Properties: map[string]string{"facing": "north"}}, {Id: 11068, Properties: map[string]string{"facing": "south"}}, {Id: 11069, Properties: map[string]string{"facing": "west"}}, {Id: 11070, Properties: map[string]string{"facing": "east"}}}}, "minecraft:green_wool": {States: []{{Id: 2060, Properties: map[string]string{}}}}, "minecraft:grindstone": {States: []{{Id: 18438, Properties: map[string]string{"face": "floor", "facing": "north"}}, {Id: 18439, Properties: map[string]string{"face": "floor", "facing": "south"}}, {Id: 18440, Properties: map[string]string{"face": "floor", "facing": "west"}}, {Id: 18441, Properties: map[string]string{"face": "floor", "facing": "east"}}, {Id: 18442, Properties: map[string]string{"face": "wall", "facing": "north"}}, {Id: 18443, Properties: map[string]string{"face": "wall", "facing": "south"}}, {Id: 18444, Properties: map[string]string{"face": "wall", "facing": "west"}}, {Id: 18445, Properties: map[string]string{"face": "wall", "facing": "east"}}, {Id: 18446, Properties: map[string]string{"face": "ceiling", "facing": "north"}}, {Id: 18447, Properties: map[string]string{"face": "ceiling", "facing": "south"}}, {Id: 18448, Properties: map[string]string{"face": "ceiling", "facing": "west"}}, {Id: 18449, Properties: map[string]string{"face": "ceiling", "facing": "east"}}}}, "minecraft:hanging_roots": {States: []{{Id: 24900, Properties: map[string]string{"waterlogged": "true"}}, {Id: 24901, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:hay_block": {States: []{{Id: 10725, Properties: map[string]string{"axis": "x"}}, {Id: 10726, Properties: map[string]string{"axis": "y"}}, {Id: 10727, Properties: map[string]string{"axis": "z"}}}}, "minecraft:heavy_core": {States: []{{Id: 26682, Properties: map[string]string{"waterlogged": "true"}}, {Id: 26683, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:heavy_weighted_pressure_plate": {States: []{{Id: 9159, Properties: map[string]string{"power": "0"}}, {Id: 9160, Properties: map[string]string{"power": "1"}}, {Id: 9161, Properties: map[string]string{"power": "2"}}, {Id: 9162, Properties: map[string]string{"power": "3"}}, {Id: 9163, Properties: map[string]string{"power": "4"}}, {Id: 9164, Properties: map[string]string{"power": "5"}}, {Id: 9165, Properties: map[string]string{"power": "6"}}, {Id: 9166, Properties: map[string]string{"power": "7"}}, {Id: 9167, Properties: map[string]string{"power": "8"}}, {Id: 9168, Properties: map[string]string{"power": "9"}}, {Id: 9169, Properties: map[string]string{"power": "10"}}, {Id: 9170, Properties: map[string]string{"power": "11"}}, {Id: 9171, Properties: map[string]string{"power": "12"}}, {Id: 9172, Properties: map[string]string{"power": "13"}}, {Id: 9173, Properties: map[string]string{"power": "14"}}, {Id: 9174, Properties: map[string]string{"power": "15"}}}}, "minecraft:honey_block": {States: []{{Id: 19445, Properties: map[string]string{}}}}, "minecraft:honeycomb_block": {States: []{{Id: 19446, Properties: map[string]string{}}}}, "minecraft:hopper": {States: []{{Id: 9225, Properties: map[string]string{"enabled": "true", "facing": "down"}}, {Id: 9226, Properties: map[string]string{"enabled": "true", "facing": "north"}}, {Id: 9227, Properties: map[string]string{"enabled": "true", "facing": "south"}}, {Id: 9228, Properties: map[string]string{"enabled": "true", "facing": "west"}}, {Id: 9229, Properties: map[string]string{"enabled": "true", "facing": "east"}}, {Id: 9230, Properties: map[string]string{"enabled": "false", "facing": "down"}}, {Id: 9231, Properties: map[string]string{"enabled": "false", "facing": "north"}}, {Id: 9232, Properties: map[string]string{"enabled": "false", "facing": "south"}}, {Id: 9233, Properties: map[string]string{"enabled": "false", "facing": "west"}}, {Id: 9234, Properties: map[string]string{"enabled": "false", "facing": "east"}}}}, "minecraft:horn_coral": {States: []{{Id: 12831, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12832, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:horn_coral_block": {States: []{{Id: 12812, Properties: map[string]string{}}}}, "minecraft:horn_coral_fan": {States: []{{Id: 12851, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12852, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:horn_coral_wall_fan": {States: []{{Id: 12925, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 12926, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 12927, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 12928, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 12929, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 12930, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 12931, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 12932, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:ice": {States: []{{Id: 5780, Properties: map[string]string{}}}}, "minecraft:infested_chiseled_stone_bricks": {States: []{{Id: 6548, Properties: map[string]string{}}}}, "minecraft:infested_cobblestone": {States: []{{Id: 6544, Properties: map[string]string{}}}}, "minecraft:infested_cracked_stone_bricks": {States: []{{Id: 6547, Properties: map[string]string{}}}}, "minecraft:infested_deepslate": {States: []{{Id: 26554, Properties: map[string]string{"axis": "x"}}, {Id: 26555, Properties: map[string]string{"axis": "y"}}, {Id: 26556, Properties: map[string]string{"axis": "z"}}}}, "minecraft:infested_mossy_stone_bricks": {States: []{{Id: 6546, Properties: map[string]string{}}}}, "minecraft:infested_stone": {States: []{{Id: 6543, Properties: map[string]string{}}}}, "minecraft:infested_stone_bricks": {States: []{{Id: 6545, Properties: map[string]string{}}}}, "minecraft:iron_bars": {States: []{{Id: 6741, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 6742, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 6743, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 6744, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 6745, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 6746, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 6747, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 6748, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 6749, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 6750, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 6751, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 6752, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 6753, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 6754, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 6755, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 6756, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 6757, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 6758, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 6759, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 6760, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 6761, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 6762, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 6763, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 6764, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 6765, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 6766, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 6767, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 6768, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 6769, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 6770, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 6771, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 6772, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:iron_block": {States: []{{Id: 2092, Properties: map[string]string{}}}}, "minecraft:iron_door": {States: []{{Id: 5652, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 5653, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 5654, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 5655, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 5656, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 5657, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 5658, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 5659, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 5660, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 5661, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 5662, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 5663, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 5664, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 5665, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 5666, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 5667, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 5668, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 5669, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 5670, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 5671, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 5672, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 5673, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 5674, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 5675, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 5676, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 5677, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 5678, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 5679, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 5680, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 5681, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 5682, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 5683, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 5684, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 5685, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 5686, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 5687, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 5688, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 5689, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 5690, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 5691, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 5692, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 5693, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 5694, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 5695, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 5696, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 5697, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 5698, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 5699, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 5700, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 5701, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 5702, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 5703, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 5704, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 5705, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 5706, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 5707, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 5708, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 5709, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 5710, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 5711, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 5712, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 5713, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 5714, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 5715, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:iron_ore": {States: []{{Id: 125, Properties: map[string]string{}}}}, "minecraft:iron_trapdoor": {States: []{{Id: 10399, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 10400, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 10401, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 10402, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 10403, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 10404, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 10405, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 10406, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 10407, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 10408, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 10409, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 10410, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 10411, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 10412, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 10413, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 10414, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 10415, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 10416, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 10417, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 10418, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 10419, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 10420, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 10421, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 10422, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 10423, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 10424, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 10425, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 10426, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 10427, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 10428, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 10429, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 10430, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 10431, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 10432, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 10433, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 10434, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 10435, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 10436, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 10437, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 10438, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 10439, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 10440, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 10441, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 10442, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 10443, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 10444, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 10445, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 10446, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 10447, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 10448, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 10449, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 10450, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 10451, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 10452, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 10453, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 10454, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 10455, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 10456, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 10457, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 10458, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 10459, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 10460, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 10461, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 10462, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:jack_o_lantern": {States: []{{Id: 5870, Properties: map[string]string{"facing": "north"}}, {Id: 5871, Properties: map[string]string{"facing": "south"}}, {Id: 5872, Properties: map[string]string{"facing": "west"}}, {Id: 5873, Properties: map[string]string{"facing": "east"}}}}, "minecraft:jigsaw": {States: []{{Id: 19360, Properties: map[string]string{"orientation": "down_east"}}, {Id: 19361, Properties: map[string]string{"orientation": "down_north"}}, {Id: 19362, Properties: map[string]string{"orientation": "down_south"}}, {Id: 19363, Properties: map[string]string{"orientation": "down_west"}}, {Id: 19364, Properties: map[string]string{"orientation": "up_east"}}, {Id: 19365, Properties: map[string]string{"orientation": "up_north"}}, {Id: 19366, Properties: map[string]string{"orientation": "up_south"}}, {Id: 19367, Properties: map[string]string{"orientation": "up_west"}}, {Id: 19368, Properties: map[string]string{"orientation": "west_up"}}, {Id: 19369, Properties: map[string]string{"orientation": "east_up"}}, {Id: 19370, Properties: map[string]string{"orientation": "north_up"}}, {Id: 19371, Properties: map[string]string{"orientation": "south_up"}}}}, "minecraft:jukebox": {States: []{{Id: 5815, Properties: map[string]string{"has_record": "true"}}, {Id: 5816, Properties: map[string]string{"has_record": "false"}}}}, "minecraft:jungle_button": {States: []{{Id: 8683, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 8684, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 8685, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 8686, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 8687, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 8688, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 8689, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 8690, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 8691, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 8692, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 8693, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 8694, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 8695, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 8696, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 8697, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 8698, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 8699, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 8700, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 8701, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 8702, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 8703, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 8704, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 8705, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 8706, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:jungle_door": {States: []{{Id: 11950, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11951, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11952, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11953, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11954, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11955, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11956, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11957, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11958, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11959, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11960, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11961, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11962, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11963, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11964, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11965, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11966, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11967, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11968, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11969, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11970, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11971, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11972, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11973, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11974, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11975, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11976, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11977, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11978, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11979, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11980, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11981, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11982, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11983, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11984, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11985, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11986, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11987, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11988, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11989, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11990, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11991, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11992, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11993, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11994, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11995, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11996, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11997, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11998, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11999, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12000, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12001, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12002, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12003, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12004, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12005, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12006, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12007, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12008, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12009, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12010, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12011, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12012, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12013, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:jungle_fence": {States: []{{Id: 11630, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11631, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11632, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11633, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11634, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11635, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11636, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11637, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11638, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11639, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11640, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11641, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11642, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11643, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11644, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11645, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11646, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11647, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11648, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11649, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11650, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11651, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11652, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11653, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11654, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11655, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11656, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11657, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11658, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11659, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11660, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11661, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:jungle_fence_gate": {States: []{{Id: 11374, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11375, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11376, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11377, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11378, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11379, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11380, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11381, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11382, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11383, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11384, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11385, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11386, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11387, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11388, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11389, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11390, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11391, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11392, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11393, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11394, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11395, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11396, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11397, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11398, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11399, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11400, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11401, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11402, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11403, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11404, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11405, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:jungle_hanging_sign": {States: []{{Id: 5154, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 5155, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 5156, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 5157, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 5158, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 5159, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 5160, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 5161, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 5162, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 5163, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 5164, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 5165, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 5166, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 5167, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 5168, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 5169, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 5170, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 5171, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 5172, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 5173, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 5174, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 5175, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 5176, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 5177, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 5178, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 5179, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 5180, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 5181, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 5182, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 5183, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 5184, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 5185, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 5186, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 5187, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 5188, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 5189, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 5190, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 5191, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 5192, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 5193, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 5194, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 5195, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 5196, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 5197, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 5198, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 5199, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 5200, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 5201, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 5202, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 5203, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 5204, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 5205, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 5206, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 5207, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 5208, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 5209, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 5210, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 5211, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 5212, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 5213, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 5214, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 5215, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 5216, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 5217, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:jungle_leaves": {States: []{{Id: 321, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "true"}}, {Id: 322, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "false"}}, {Id: 323, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "true"}}, {Id: 324, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "false"}}, {Id: 325, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "true"}}, {Id: 326, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "false"}}, {Id: 327, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "true"}}, {Id: 328, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "false"}}, {Id: 329, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "true"}}, {Id: 330, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "false"}}, {Id: 331, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "true"}}, {Id: 332, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "false"}}, {Id: 333, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "true"}}, {Id: 334, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "false"}}, {Id: 335, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "true"}}, {Id: 336, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "false"}}, {Id: 337, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "true"}}, {Id: 338, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "false"}}, {Id: 339, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "true"}}, {Id: 340, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "false"}}, {Id: 341, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "true"}}, {Id: 342, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "false"}}, {Id: 343, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "true"}}, {Id: 344, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "false"}}, {Id: 345, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "true"}}, {Id: 346, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "false"}}, {Id: 347, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "true"}}, {Id: 348, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "false"}}}}, "minecraft:jungle_log": {States: []{{Id: 139, Properties: map[string]string{"axis": "x"}}, {Id: 140, Properties: map[string]string{"axis": "y"}}, {Id: 141, Properties: map[string]string{"axis": "z"}}}}, "minecraft:jungle_planks": {States: []{{Id: 18, Properties: map[string]string{}}}}, "minecraft:jungle_pressure_plate": {States: []{{Id: 5722, Properties: map[string]string{"powered": "true"}}, {Id: 5723, Properties: map[string]string{"powered": "false"}}}}, "minecraft:jungle_sapling": {States: []{{Id: 31, Properties: map[string]string{"stage": "0"}}, {Id: 32, Properties: map[string]string{"stage": "1"}}}}, "minecraft:jungle_sign": {States: []{{Id: 4462, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 4463, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 4464, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 4465, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 4466, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 4467, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 4468, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 4469, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 4470, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 4471, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 4472, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 4473, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 4474, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 4475, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 4476, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 4477, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 4478, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 4479, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 4480, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 4481, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 4482, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 4483, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 4484, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 4485, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 4486, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 4487, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 4488, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 4489, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 4490, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 4491, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 4492, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 4493, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:jungle_slab": {States: []{{Id: 11180, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11181, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11182, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11183, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11184, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11185, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:jungle_stairs": {States: []{{Id: 7826, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7827, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7828, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7829, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7830, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7831, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7832, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7833, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7834, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7835, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7836, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7837, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7838, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7839, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7840, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7841, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7842, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7843, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7844, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7845, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7846, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7847, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7848, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7849, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7850, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7851, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7852, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7853, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7854, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7855, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7856, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7857, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7858, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7859, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7860, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7861, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7862, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7863, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7864, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7865, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7866, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7867, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7868, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7869, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7870, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7871, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7872, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7873, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7874, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7875, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7876, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7877, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7878, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7879, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7880, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7881, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7882, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7883, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7884, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7885, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7886, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7887, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7888, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7889, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7890, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7891, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7892, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7893, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7894, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7895, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7896, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7897, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7898, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7899, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7900, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7901, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7902, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7903, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7904, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7905, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:jungle_trapdoor": {States: []{{Id: 6153, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6154, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6155, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6156, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6157, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6158, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6159, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6160, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6161, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6162, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6163, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6164, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6165, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6166, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6167, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6168, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6169, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6170, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6171, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6172, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6173, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6174, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6175, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6176, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6177, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6178, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6179, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6180, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6181, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6182, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6183, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6184, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6185, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6186, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6187, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6188, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6189, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6190, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6191, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6192, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6193, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6194, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6195, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6196, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6197, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6198, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6199, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6200, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6201, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6202, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6203, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6204, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6205, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6206, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6207, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6208, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6209, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6210, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6211, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6212, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6213, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6214, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6215, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6216, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:jungle_wall_hanging_sign": {States: []{{Id: 5578, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5579, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5580, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5581, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5582, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5583, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5584, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5585, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:jungle_wall_sign": {States: []{{Id: 4802, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 4803, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 4804, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 4805, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 4806, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 4807, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 4808, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 4809, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:jungle_wood": {States: []{{Id: 198, Properties: map[string]string{"axis": "x"}}, {Id: 199, Properties: map[string]string{"axis": "y"}}, {Id: 200, Properties: map[string]string{"axis": "z"}}}}, "minecraft:kelp": {States: []{{Id: 12760, Properties: map[string]string{"age": "0"}}, {Id: 12761, Properties: map[string]string{"age": "1"}}, {Id: 12762, Properties: map[string]string{"age": "2"}}, {Id: 12763, Properties: map[string]string{"age": "3"}}, {Id: 12764, Properties: map[string]string{"age": "4"}}, {Id: 12765, Properties: map[string]string{"age": "5"}}, {Id: 12766, Properties: map[string]string{"age": "6"}}, {Id: 12767, Properties: map[string]string{"age": "7"}}, {Id: 12768, Properties: map[string]string{"age": "8"}}, {Id: 12769, Properties: map[string]string{"age": "9"}}, {Id: 12770, Properties: map[string]string{"age": "10"}}, {Id: 12771, Properties: map[string]string{"age": "11"}}, {Id: 12772, Properties: map[string]string{"age": "12"}}, {Id: 12773, Properties: map[string]string{"age": "13"}}, {Id: 12774, Properties: map[string]string{"age": "14"}}, {Id: 12775, Properties: map[string]string{"age": "15"}}, {Id: 12776, Properties: map[string]string{"age": "16"}}, {Id: 12777, Properties: map[string]string{"age": "17"}}, {Id: 12778, Properties: map[string]string{"age": "18"}}, {Id: 12779, Properties: map[string]string{"age": "19"}}, {Id: 12780, Properties: map[string]string{"age": "20"}}, {Id: 12781, Properties: map[string]string{"age": "21"}}, {Id: 12782, Properties: map[string]string{"age": "22"}}, {Id: 12783, Properties: map[string]string{"age": "23"}}, {Id: 12784, Properties: map[string]string{"age": "24"}}, {Id: 12785, Properties: map[string]string{"age": "25"}}}}, "minecraft:kelp_plant": {States: []{{Id: 12786, Properties: map[string]string{}}}}, "minecraft:ladder": {States: []{{Id: 4654, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 4655, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 4656, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 4657, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 4658, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 4659, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 4660, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 4661, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:lantern": {States: []{{Id: 18503, Properties: map[string]string{"hanging": "true", "waterlogged": "true"}}, {Id: 18504, Properties: map[string]string{"hanging": "true", "waterlogged": "false"}}, {Id: 18505, Properties: map[string]string{"hanging": "false", "waterlogged": "true"}}, {Id: 18506, Properties: map[string]string{"hanging": "false", "waterlogged": "false"}}}}, "minecraft:lapis_block": {States: []{{Id: 522, Properties: map[string]string{}}}}, "minecraft:lapis_ore": {States: []{{Id: 520, Properties: map[string]string{}}}}, "minecraft:large_amethyst_bud": {States: []{{Id: 21045, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 21046, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 21047, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 21048, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}, {Id: 21049, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 21050, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 21051, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 21052, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 21053, Properties: map[string]string{"facing": "up", "waterlogged": "true"}}, {Id: 21054, Properties: map[string]string{"facing": "up", "waterlogged": "false"}}, {Id: 21055, Properties: map[string]string{"facing": "down", "waterlogged": "true"}}, {Id: 21056, Properties: map[string]string{"facing": "down", "waterlogged": "false"}}}}, "minecraft:large_fern": {States: []{{Id: 10757, Properties: map[string]string{"half": "upper"}}, {Id: 10758, Properties: map[string]string{"half": "lower"}}}}, "minecraft:lava": {States: []{{Id: 96, Properties: map[string]string{"level": "0"}}, {Id: 97, Properties: map[string]string{"level": "1"}}, {Id: 98, Properties: map[string]string{"level": "2"}}, {Id: 99, Properties: map[string]string{"level": "3"}}, {Id: 100, Properties: map[string]string{"level": "4"}}, {Id: 101, Properties: map[string]string{"level": "5"}}, {Id: 102, Properties: map[string]string{"level": "6"}}, {Id: 103, Properties: map[string]string{"level": "7"}}, {Id: 104, Properties: map[string]string{"level": "8"}}, {Id: 105, Properties: map[string]string{"level": "9"}}, {Id: 106, Properties: map[string]string{"level": "10"}}, {Id: 107, Properties: map[string]string{"level": "11"}}, {Id: 108, Properties: map[string]string{"level": "12"}}, {Id: 109, Properties: map[string]string{"level": "13"}}, {Id: 110, Properties: map[string]string{"level": "14"}}, {Id: 111, Properties: map[string]string{"level": "15"}}}}, "minecraft:lava_cauldron": {States: []{{Id: 7402, Properties: map[string]string{}}}}, "minecraft:lectern": {States: []{{Id: 18450, Properties: map[string]string{"facing": "north", "has_book": "true", "powered": "true"}}, {Id: 18451, Properties: map[string]string{"facing": "north", "has_book": "true", "powered": "false"}}, {Id: 18452, Properties: map[string]string{"facing": "north", "has_book": "false", "powered": "true"}}, {Id: 18453, Properties: map[string]string{"facing": "north", "has_book": "false", "powered": "false"}}, {Id: 18454, Properties: map[string]string{"facing": "south", "has_book": "true", "powered": "true"}}, {Id: 18455, Properties: map[string]string{"facing": "south", "has_book": "true", "powered": "false"}}, {Id: 18456, Properties: map[string]string{"facing": "south", "has_book": "false", "powered": "true"}}, {Id: 18457, Properties: map[string]string{"facing": "south", "has_book": "false", "powered": "false"}}, {Id: 18458, Properties: map[string]string{"facing": "west", "has_book": "true", "powered": "true"}}, {Id: 18459, Properties: map[string]string{"facing": "west", "has_book": "true", "powered": "false"}}, {Id: 18460, Properties: map[string]string{"facing": "west", "has_book": "false", "powered": "true"}}, {Id: 18461, Properties: map[string]string{"facing": "west", "has_book": "false", "powered": "false"}}, {Id: 18462, Properties: map[string]string{"facing": "east", "has_book": "true", "powered": "true"}}, {Id: 18463, Properties: map[string]string{"facing": "east", "has_book": "true", "powered": "false"}}, {Id: 18464, Properties: map[string]string{"facing": "east", "has_book": "false", "powered": "true"}}, {Id: 18465, Properties: map[string]string{"facing": "east", "has_book": "false", "powered": "false"}}}}, "minecraft:lever": {States: []{{Id: 5626, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 5627, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 5628, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 5629, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 5630, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 5631, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 5632, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 5633, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 5634, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 5635, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 5636, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 5637, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 5638, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 5639, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 5640, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 5641, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 5642, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 5643, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 5644, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 5645, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 5646, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 5647, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 5648, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 5649, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:light": {States: []{{Id: 10367, Properties: map[string]string{"level": "0", "waterlogged": "true"}}, {Id: 10368, Properties: map[string]string{"level": "0", "waterlogged": "false"}}, {Id: 10369, Properties: map[string]string{"level": "1", "waterlogged": "true"}}, {Id: 10370, Properties: map[string]string{"level": "1", "waterlogged": "false"}}, {Id: 10371, Properties: map[string]string{"level": "2", "waterlogged": "true"}}, {Id: 10372, Properties: map[string]string{"level": "2", "waterlogged": "false"}}, {Id: 10373, Properties: map[string]string{"level": "3", "waterlogged": "true"}}, {Id: 10374, Properties: map[string]string{"level": "3", "waterlogged": "false"}}, {Id: 10375, Properties: map[string]string{"level": "4", "waterlogged": "true"}}, {Id: 10376, Properties: map[string]string{"level": "4", "waterlogged": "false"}}, {Id: 10377, Properties: map[string]string{"level": "5", "waterlogged": "true"}}, {Id: 10378, Properties: map[string]string{"level": "5", "waterlogged": "false"}}, {Id: 10379, Properties: map[string]string{"level": "6", "waterlogged": "true"}}, {Id: 10380, Properties: map[string]string{"level": "6", "waterlogged": "false"}}, {Id: 10381, Properties: map[string]string{"level": "7", "waterlogged": "true"}}, {Id: 10382, Properties: map[string]string{"level": "7", "waterlogged": "false"}}, {Id: 10383, Properties: map[string]string{"level": "8", "waterlogged": "true"}}, {Id: 10384, Properties: map[string]string{"level": "8", "waterlogged": "false"}}, {Id: 10385, Properties: map[string]string{"level": "9", "waterlogged": "true"}}, {Id: 10386, Properties: map[string]string{"level": "9", "waterlogged": "false"}}, {Id: 10387, Properties: map[string]string{"level": "10", "waterlogged": "true"}}, {Id: 10388, Properties: map[string]string{"level": "10", "waterlogged": "false"}}, {Id: 10389, Properties: map[string]string{"level": "11", "waterlogged": "true"}}, {Id: 10390, Properties: map[string]string{"level": "11", "waterlogged": "false"}}, {Id: 10391, Properties: map[string]string{"level": "12", "waterlogged": "true"}}, {Id: 10392, Properties: map[string]string{"level": "12", "waterlogged": "false"}}, {Id: 10393, Properties: map[string]string{"level": "13", "waterlogged": "true"}}, {Id: 10394, Properties: map[string]string{"level": "13", "waterlogged": "false"}}, {Id: 10395, Properties: map[string]string{"level": "14", "waterlogged": "true"}}, {Id: 10396, Properties: map[string]string{"level": "14", "waterlogged": "false"}}, {Id: 10397, Properties: map[string]string{"level": "15", "waterlogged": "true"}}, {Id: 10398, Properties: map[string]string{"level": "15", "waterlogged": "false"}}}}, "minecraft:light_blue_banner": {States: []{{Id: 10807, Properties: map[string]string{"rotation": "0"}}, {Id: 10808, Properties: map[string]string{"rotation": "1"}}, {Id: 10809, Properties: map[string]string{"rotation": "2"}}, {Id: 10810, Properties: map[string]string{"rotation": "3"}}, {Id: 10811, Properties: map[string]string{"rotation": "4"}}, {Id: 10812, Properties: map[string]string{"rotation": "5"}}, {Id: 10813, Properties: map[string]string{"rotation": "6"}}, {Id: 10814, Properties: map[string]string{"rotation": "7"}}, {Id: 10815, Properties: map[string]string{"rotation": "8"}}, {Id: 10816, Properties: map[string]string{"rotation": "9"}}, {Id: 10817, Properties: map[string]string{"rotation": "10"}}, {Id: 10818, Properties: map[string]string{"rotation": "11"}}, {Id: 10819, Properties: map[string]string{"rotation": "12"}}, {Id: 10820, Properties: map[string]string{"rotation": "13"}}, {Id: 10821, Properties: map[string]string{"rotation": "14"}}, {Id: 10822, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:light_blue_bed": {States: []{{Id: 1736, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1737, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1738, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1739, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1740, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1741, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1742, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1743, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1744, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1745, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1746, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1747, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1748, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1749, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1750, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1751, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:light_blue_candle": {States: []{{Id: 20789, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20790, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20791, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20792, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20793, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20794, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20795, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20796, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20797, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20798, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20799, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20800, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20801, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20802, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20803, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20804, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:light_blue_candle_cake": {States: []{{Id: 21005, Properties: map[string]string{"lit": "true"}}, {Id: 21006, Properties: map[string]string{"lit": "false"}}}}, "minecraft:light_blue_carpet": {States: []{{Id: 10731, Properties: map[string]string{}}}}, "minecraft:light_blue_concrete": {States: []{{Id: 12731, Properties: map[string]string{}}}}, "minecraft:light_blue_concrete_powder": {States: []{{Id: 12747, Properties: map[string]string{}}}}, "minecraft:light_blue_glazed_terracotta": {States: []{{Id: 12676, Properties: map[string]string{"facing": "north"}}, {Id: 12677, Properties: map[string]string{"facing": "south"}}, {Id: 12678, Properties: map[string]string{"facing": "west"}}, {Id: 12679, Properties: map[string]string{"facing": "east"}}}}, "minecraft:light_blue_shulker_box": {States: []{{Id: 12586, Properties: map[string]string{"facing": "north"}}, {Id: 12587, Properties: map[string]string{"facing": "east"}}, {Id: 12588, Properties: map[string]string{"facing": "south"}}, {Id: 12589, Properties: map[string]string{"facing": "west"}}, {Id: 12590, Properties: map[string]string{"facing": "up"}}, {Id: 12591, Properties: map[string]string{"facing": "down"}}}}, "minecraft:light_blue_stained_glass": {States: []{{Id: 5948, Properties: map[string]string{}}}}, "minecraft:light_blue_stained_glass_pane": {States: []{{Id: 9468, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9469, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9470, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9471, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9472, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9473, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9474, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9475, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9476, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9477, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9478, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9479, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9480, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9481, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9482, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9483, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9484, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9485, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9486, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9487, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9488, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9489, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9490, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9491, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9492, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9493, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9494, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9495, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9496, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9497, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9498, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9499, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:light_blue_terracotta": {States: []{{Id: 9359, Properties: map[string]string{}}}}, "minecraft:light_blue_wall_banner": {States: []{{Id: 11027, Properties: map[string]string{"facing": "north"}}, {Id: 11028, Properties: map[string]string{"facing": "south"}}, {Id: 11029, Properties: map[string]string{"facing": "west"}}, {Id: 11030, Properties: map[string]string{"facing": "east"}}}}, "minecraft:light_blue_wool": {States: []{{Id: 2050, Properties: map[string]string{}}}}, "minecraft:light_gray_banner": {States: []{{Id: 10887, Properties: map[string]string{"rotation": "0"}}, {Id: 10888, Properties: map[string]string{"rotation": "1"}}, {Id: 10889, Properties: map[string]string{"rotation": "2"}}, {Id: 10890, Properties: map[string]string{"rotation": "3"}}, {Id: 10891, Properties: map[string]string{"rotation": "4"}}, {Id: 10892, Properties: map[string]string{"rotation": "5"}}, {Id: 10893, Properties: map[string]string{"rotation": "6"}}, {Id: 10894, Properties: map[string]string{"rotation": "7"}}, {Id: 10895, Properties: map[string]string{"rotation": "8"}}, {Id: 10896, Properties: map[string]string{"rotation": "9"}}, {Id: 10897, Properties: map[string]string{"rotation": "10"}}, {Id: 10898, Properties: map[string]string{"rotation": "11"}}, {Id: 10899, Properties: map[string]string{"rotation": "12"}}, {Id: 10900, Properties: map[string]string{"rotation": "13"}}, {Id: 10901, Properties: map[string]string{"rotation": "14"}}, {Id: 10902, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:light_gray_bed": {States: []{{Id: 1816, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1817, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1818, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1819, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1820, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1821, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1822, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1823, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1824, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1825, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1826, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1827, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1828, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1829, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1830, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1831, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:light_gray_candle": {States: []{{Id: 20869, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20870, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20871, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20872, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20873, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20874, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20875, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20876, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20877, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20878, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20879, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20880, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20881, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20882, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20883, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20884, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:light_gray_candle_cake": {States: []{{Id: 21015, Properties: map[string]string{"lit": "true"}}, {Id: 21016, Properties: map[string]string{"lit": "false"}}}}, "minecraft:light_gray_carpet": {States: []{{Id: 10736, Properties: map[string]string{}}}}, "minecraft:light_gray_concrete": {States: []{{Id: 12736, Properties: map[string]string{}}}}, "minecraft:light_gray_concrete_powder": {States: []{{Id: 12752, Properties: map[string]string{}}}}, "minecraft:light_gray_glazed_terracotta": {States: []{{Id: 12696, Properties: map[string]string{"facing": "north"}}, {Id: 12697, Properties: map[string]string{"facing": "south"}}, {Id: 12698, Properties: map[string]string{"facing": "west"}}, {Id: 12699, Properties: map[string]string{"facing": "east"}}}}, "minecraft:light_gray_shulker_box": {States: []{{Id: 12616, Properties: map[string]string{"facing": "north"}}, {Id: 12617, Properties: map[string]string{"facing": "east"}}, {Id: 12618, Properties: map[string]string{"facing": "south"}}, {Id: 12619, Properties: map[string]string{"facing": "west"}}, {Id: 12620, Properties: map[string]string{"facing": "up"}}, {Id: 12621, Properties: map[string]string{"facing": "down"}}}}, "minecraft:light_gray_stained_glass": {States: []{{Id: 5953, Properties: map[string]string{}}}}, "minecraft:light_gray_stained_glass_pane": {States: []{{Id: 9628, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9629, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9630, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9631, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9632, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9633, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9634, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9635, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9636, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9637, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9638, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9639, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9640, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9641, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9642, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9643, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9644, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9645, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9646, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9647, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9648, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9649, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9650, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9651, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9652, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9653, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9654, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9655, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9656, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9657, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9658, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9659, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:light_gray_terracotta": {States: []{{Id: 9364, Properties: map[string]string{}}}}, "minecraft:light_gray_wall_banner": {States: []{{Id: 11047, Properties: map[string]string{"facing": "north"}}, {Id: 11048, Properties: map[string]string{"facing": "south"}}, {Id: 11049, Properties: map[string]string{"facing": "west"}}, {Id: 11050, Properties: map[string]string{"facing": "east"}}}}, "minecraft:light_gray_wool": {States: []{{Id: 2055, Properties: map[string]string{}}}}, "minecraft:light_weighted_pressure_plate": {States: []{{Id: 9143, Properties: map[string]string{"power": "0"}}, {Id: 9144, Properties: map[string]string{"power": "1"}}, {Id: 9145, Properties: map[string]string{"power": "2"}}, {Id: 9146, Properties: map[string]string{"power": "3"}}, {Id: 9147, Properties: map[string]string{"power": "4"}}, {Id: 9148, Properties: map[string]string{"power": "5"}}, {Id: 9149, Properties: map[string]string{"power": "6"}}, {Id: 9150, Properties: map[string]string{"power": "7"}}, {Id: 9151, Properties: map[string]string{"power": "8"}}, {Id: 9152, Properties: map[string]string{"power": "9"}}, {Id: 9153, Properties: map[string]string{"power": "10"}}, {Id: 9154, Properties: map[string]string{"power": "11"}}, {Id: 9155, Properties: map[string]string{"power": "12"}}, {Id: 9156, Properties: map[string]string{"power": "13"}}, {Id: 9157, Properties: map[string]string{"power": "14"}}, {Id: 9158, Properties: map[string]string{"power": "15"}}}}, "minecraft:lightning_rod": {States: []{{Id: 24724, Properties: map[string]string{"facing": "north", "powered": "true", "waterlogged": "true"}}, {Id: 24725, Properties: map[string]string{"facing": "north", "powered": "true", "waterlogged": "false"}}, {Id: 24726, Properties: map[string]string{"facing": "north", "powered": "false", "waterlogged": "true"}}, {Id: 24727, Properties: map[string]string{"facing": "north", "powered": "false", "waterlogged": "false"}}, {Id: 24728, Properties: map[string]string{"facing": "east", "powered": "true", "waterlogged": "true"}}, {Id: 24729, Properties: map[string]string{"facing": "east", "powered": "true", "waterlogged": "false"}}, {Id: 24730, Properties: map[string]string{"facing": "east", "powered": "false", "waterlogged": "true"}}, {Id: 24731, Properties: map[string]string{"facing": "east", "powered": "false", "waterlogged": "false"}}, {Id: 24732, Properties: map[string]string{"facing": "south", "powered": "true", "waterlogged": "true"}}, {Id: 24733, Properties: map[string]string{"facing": "south", "powered": "true", "waterlogged": "false"}}, {Id: 24734, Properties: map[string]string{"facing": "south", "powered": "false", "waterlogged": "true"}}, {Id: 24735, Properties: map[string]string{"facing": "south", "powered": "false", "waterlogged": "false"}}, {Id: 24736, Properties: map[string]string{"facing": "west", "powered": "true", "waterlogged": "true"}}, {Id: 24737, Properties: map[string]string{"facing": "west", "powered": "true", "waterlogged": "false"}}, {Id: 24738, Properties: map[string]string{"facing": "west", "powered": "false", "waterlogged": "true"}}, {Id: 24739, Properties: map[string]string{"facing": "west", "powered": "false", "waterlogged": "false"}}, {Id: 24740, Properties: map[string]string{"facing": "up", "powered": "true", "waterlogged": "true"}}, {Id: 24741, Properties: map[string]string{"facing": "up", "powered": "true", "waterlogged": "false"}}, {Id: 24742, Properties: map[string]string{"facing": "up", "powered": "false", "waterlogged": "true"}}, {Id: 24743, Properties: map[string]string{"facing": "up", "powered": "false", "waterlogged": "false"}}, {Id: 24744, Properties: map[string]string{"facing": "down", "powered": "true", "waterlogged": "true"}}, {Id: 24745, Properties: map[string]string{"facing": "down", "powered": "true", "waterlogged": "false"}}, {Id: 24746, Properties: map[string]string{"facing": "down", "powered": "false", "waterlogged": "true"}}, {Id: 24747, Properties: map[string]string{"facing": "down", "powered": "false", "waterlogged": "false"}}}}, "minecraft:lilac": {States: []{{Id: 10749, Properties: map[string]string{"half": "upper"}}, {Id: 10750, Properties: map[string]string{"half": "lower"}}}}, "minecraft:lily_of_the_valley": {States: []{{Id: 2088, Properties: map[string]string{}}}}, "minecraft:lily_pad": {States: []{{Id: 7271, Properties: map[string]string{}}}}, "minecraft:lime_banner": {States: []{{Id: 10839, Properties: map[string]string{"rotation": "0"}}, {Id: 10840, Properties: map[string]string{"rotation": "1"}}, {Id: 10841, Properties: map[string]string{"rotation": "2"}}, {Id: 10842, Properties: map[string]string{"rotation": "3"}}, {Id: 10843, Properties: map[string]string{"rotation": "4"}}, {Id: 10844, Properties: map[string]string{"rotation": "5"}}, {Id: 10845, Properties: map[string]string{"rotation": "6"}}, {Id: 10846, Properties: map[string]string{"rotation": "7"}}, {Id: 10847, Properties: map[string]string{"rotation": "8"}}, {Id: 10848, Properties: map[string]string{"rotation": "9"}}, {Id: 10849, Properties: map[string]string{"rotation": "10"}}, {Id: 10850, Properties: map[string]string{"rotation": "11"}}, {Id: 10851, Properties: map[string]string{"rotation": "12"}}, {Id: 10852, Properties: map[string]string{"rotation": "13"}}, {Id: 10853, Properties: map[string]string{"rotation": "14"}}, {Id: 10854, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:lime_bed": {States: []{{Id: 1768, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1769, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1770, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1771, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1772, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1773, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1774, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1775, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1776, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1777, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1778, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1779, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1780, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1781, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1782, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1783, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:lime_candle": {States: []{{Id: 20821, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20822, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20823, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20824, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20825, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20826, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20827, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20828, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20829, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20830, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20831, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20832, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20833, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20834, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20835, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20836, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:lime_candle_cake": {States: []{{Id: 21009, Properties: map[string]string{"lit": "true"}}, {Id: 21010, Properties: map[string]string{"lit": "false"}}}}, "minecraft:lime_carpet": {States: []{{Id: 10733, Properties: map[string]string{}}}}, "minecraft:lime_concrete": {States: []{{Id: 12733, Properties: map[string]string{}}}}, "minecraft:lime_concrete_powder": {States: []{{Id: 12749, Properties: map[string]string{}}}}, "minecraft:lime_glazed_terracotta": {States: []{{Id: 12684, Properties: map[string]string{"facing": "north"}}, {Id: 12685, Properties: map[string]string{"facing": "south"}}, {Id: 12686, Properties: map[string]string{"facing": "west"}}, {Id: 12687, Properties: map[string]string{"facing": "east"}}}}, "minecraft:lime_shulker_box": {States: []{{Id: 12598, Properties: map[string]string{"facing": "north"}}, {Id: 12599, Properties: map[string]string{"facing": "east"}}, {Id: 12600, Properties: map[string]string{"facing": "south"}}, {Id: 12601, Properties: map[string]string{"facing": "west"}}, {Id: 12602, Properties: map[string]string{"facing": "up"}}, {Id: 12603, Properties: map[string]string{"facing": "down"}}}}, "minecraft:lime_stained_glass": {States: []{{Id: 5950, Properties: map[string]string{}}}}, "minecraft:lime_stained_glass_pane": {States: []{{Id: 9532, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9533, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9534, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9535, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9536, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9537, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9538, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9539, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9540, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9541, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9542, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9543, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9544, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9545, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9546, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9547, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9548, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9549, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9550, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9551, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9552, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9553, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9554, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9555, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9556, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9557, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9558, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9559, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9560, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9561, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9562, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9563, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:lime_terracotta": {States: []{{Id: 9361, Properties: map[string]string{}}}}, "minecraft:lime_wall_banner": {States: []{{Id: 11035, Properties: map[string]string{"facing": "north"}}, {Id: 11036, Properties: map[string]string{"facing": "south"}}, {Id: 11037, Properties: map[string]string{"facing": "west"}}, {Id: 11038, Properties: map[string]string{"facing": "east"}}}}, "minecraft:lime_wool": {States: []{{Id: 2052, Properties: map[string]string{}}}}, "minecraft:lodestone": {States: []{{Id: 19459, Properties: map[string]string{}}}}, "minecraft:loom": {States: []{{Id: 18404, Properties: map[string]string{"facing": "north"}}, {Id: 18405, Properties: map[string]string{"facing": "south"}}, {Id: 18406, Properties: map[string]string{"facing": "west"}}, {Id: 18407, Properties: map[string]string{"facing": "east"}}}}, "minecraft:magenta_banner": {States: []{{Id: 10791, Properties: map[string]string{"rotation": "0"}}, {Id: 10792, Properties: map[string]string{"rotation": "1"}}, {Id: 10793, Properties: map[string]string{"rotation": "2"}}, {Id: 10794, Properties: map[string]string{"rotation": "3"}}, {Id: 10795, Properties: map[string]string{"rotation": "4"}}, {Id: 10796, Properties: map[string]string{"rotation": "5"}}, {Id: 10797, Properties: map[string]string{"rotation": "6"}}, {Id: 10798, Properties: map[string]string{"rotation": "7"}}, {Id: 10799, Properties: map[string]string{"rotation": "8"}}, {Id: 10800, Properties: map[string]string{"rotation": "9"}}, {Id: 10801, Properties: map[string]string{"rotation": "10"}}, {Id: 10802, Properties: map[string]string{"rotation": "11"}}, {Id: 10803, Properties: map[string]string{"rotation": "12"}}, {Id: 10804, Properties: map[string]string{"rotation": "13"}}, {Id: 10805, Properties: map[string]string{"rotation": "14"}}, {Id: 10806, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:magenta_bed": {States: []{{Id: 1720, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1721, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1722, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1723, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1724, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1725, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1726, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1727, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1728, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1729, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1730, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1731, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1732, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1733, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1734, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1735, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:magenta_candle": {States: []{{Id: 20773, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20774, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20775, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20776, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20777, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20778, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20779, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20780, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20781, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20782, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20783, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20784, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20785, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20786, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20787, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20788, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:magenta_candle_cake": {States: []{{Id: 21003, Properties: map[string]string{"lit": "true"}}, {Id: 21004, Properties: map[string]string{"lit": "false"}}}}, "minecraft:magenta_carpet": {States: []{{Id: 10730, Properties: map[string]string{}}}}, "minecraft:magenta_concrete": {States: []{{Id: 12730, Properties: map[string]string{}}}}, "minecraft:magenta_concrete_powder": {States: []{{Id: 12746, Properties: map[string]string{}}}}, "minecraft:magenta_glazed_terracotta": {States: []{{Id: 12672, Properties: map[string]string{"facing": "north"}}, {Id: 12673, Properties: map[string]string{"facing": "south"}}, {Id: 12674, Properties: map[string]string{"facing": "west"}}, {Id: 12675, Properties: map[string]string{"facing": "east"}}}}, "minecraft:magenta_shulker_box": {States: []{{Id: 12580, Properties: map[string]string{"facing": "north"}}, {Id: 12581, Properties: map[string]string{"facing": "east"}}, {Id: 12582, Properties: map[string]string{"facing": "south"}}, {Id: 12583, Properties: map[string]string{"facing": "west"}}, {Id: 12584, Properties: map[string]string{"facing": "up"}}, {Id: 12585, Properties: map[string]string{"facing": "down"}}}}, "minecraft:magenta_stained_glass": {States: []{{Id: 5947, Properties: map[string]string{}}}}, "minecraft:magenta_stained_glass_pane": {States: []{{Id: 9436, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9437, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9438, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9439, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9440, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9441, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9442, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9443, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9444, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9445, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9446, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9447, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9448, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9449, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9450, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9451, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9452, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9453, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9454, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9455, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9456, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9457, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9458, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9459, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9460, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9461, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9462, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9463, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9464, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9465, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9466, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9467, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:magenta_terracotta": {States: []{{Id: 9358, Properties: map[string]string{}}}}, "minecraft:magenta_wall_banner": {States: []{{Id: 11023, Properties: map[string]string{"facing": "north"}}, {Id: 11024, Properties: map[string]string{"facing": "south"}}, {Id: 11025, Properties: map[string]string{"facing": "west"}}, {Id: 11026, Properties: map[string]string{"facing": "east"}}}}, "minecraft:magenta_wool": {States: []{{Id: 2049, Properties: map[string]string{}}}}, "minecraft:magma_block": {States: []{{Id: 12543, Properties: map[string]string{}}}}, "minecraft:mangrove_button": {States: []{{Id: 8779, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 8780, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 8781, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 8782, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 8783, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 8784, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 8785, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 8786, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 8787, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 8788, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 8789, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 8790, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 8791, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 8792, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 8793, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 8794, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 8795, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 8796, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 8797, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 8798, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 8799, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 8800, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 8801, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 8802, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:mangrove_door": {States: []{{Id: 12206, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12207, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12208, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12209, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12210, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12211, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12212, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12213, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12214, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12215, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12216, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12217, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12218, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12219, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12220, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12221, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12222, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12223, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12224, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12225, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12226, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12227, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12228, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12229, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12230, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12231, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12232, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12233, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12234, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12235, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12236, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12237, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12238, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12239, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12240, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12241, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12242, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12243, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12244, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12245, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12246, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12247, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12248, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12249, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12250, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12251, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12252, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12253, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12254, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12255, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12256, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12257, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12258, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12259, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12260, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12261, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 12262, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 12263, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 12264, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 12265, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 12266, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 12267, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 12268, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 12269, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:mangrove_fence": {States: []{{Id: 11758, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11759, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11760, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11761, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11762, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11763, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11764, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11765, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11766, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11767, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11768, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11769, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11770, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11771, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11772, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11773, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11774, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11775, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11776, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11777, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11778, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11779, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11780, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11781, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11782, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11783, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11784, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11785, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11786, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11787, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11788, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11789, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:mangrove_fence_gate": {States: []{{Id: 11502, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11503, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11504, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11505, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11506, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11507, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11508, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11509, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11510, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11511, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11512, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11513, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11514, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11515, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11516, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11517, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11518, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11519, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11520, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11521, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11522, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11523, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11524, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11525, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11526, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11527, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11528, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11529, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11530, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11531, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11532, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11533, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:mangrove_hanging_sign": {States: []{{Id: 5410, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 5411, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 5412, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 5413, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 5414, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 5415, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 5416, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 5417, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 5418, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 5419, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 5420, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 5421, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 5422, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 5423, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 5424, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 5425, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 5426, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 5427, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 5428, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 5429, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 5430, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 5431, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 5432, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 5433, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 5434, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 5435, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 5436, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 5437, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 5438, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 5439, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 5440, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 5441, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 5442, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 5443, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 5444, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 5445, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 5446, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 5447, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 5448, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 5449, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 5450, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 5451, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 5452, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 5453, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 5454, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 5455, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 5456, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 5457, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 5458, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 5459, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 5460, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 5461, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 5462, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 5463, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 5464, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 5465, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 5466, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 5467, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 5468, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 5469, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 5470, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 5471, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 5472, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 5473, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:mangrove_leaves": {States: []{{Id: 433, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "true"}}, {Id: 434, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "false"}}, {Id: 435, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "true"}}, {Id: 436, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "false"}}, {Id: 437, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "true"}}, {Id: 438, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "false"}}, {Id: 439, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "true"}}, {Id: 440, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "false"}}, {Id: 441, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "true"}}, {Id: 442, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "false"}}, {Id: 443, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "true"}}, {Id: 444, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "false"}}, {Id: 445, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "true"}}, {Id: 446, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "false"}}, {Id: 447, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "true"}}, {Id: 448, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "false"}}, {Id: 449, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "true"}}, {Id: 450, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "false"}}, {Id: 451, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "true"}}, {Id: 452, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "false"}}, {Id: 453, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "true"}}, {Id: 454, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "false"}}, {Id: 455, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "true"}}, {Id: 456, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "false"}}, {Id: 457, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "true"}}, {Id: 458, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "false"}}, {Id: 459, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "true"}}, {Id: 460, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "false"}}}}, "minecraft:mangrove_log": {States: []{{Id: 151, Properties: map[string]string{"axis": "x"}}, {Id: 152, Properties: map[string]string{"axis": "y"}}, {Id: 153, Properties: map[string]string{"axis": "z"}}}}, "minecraft:mangrove_planks": {States: []{{Id: 22, Properties: map[string]string{}}}}, "minecraft:mangrove_pressure_plate": {States: []{{Id: 5730, Properties: map[string]string{"powered": "true"}}, {Id: 5731, Properties: map[string]string{"powered": "false"}}}}, "minecraft:mangrove_propagule": {States: []{{Id: 39, Properties: map[string]string{"age": "0", "hanging": "true", "stage": "0", "waterlogged": "true"}}, {Id: 40, Properties: map[string]string{"age": "0", "hanging": "true", "stage": "0", "waterlogged": "false"}}, {Id: 41, Properties: map[string]string{"age": "0", "hanging": "true", "stage": "1", "waterlogged": "true"}}, {Id: 42, Properties: map[string]string{"age": "0", "hanging": "true", "stage": "1", "waterlogged": "false"}}, {Id: 43, Properties: map[string]string{"age": "0", "hanging": "false", "stage": "0", "waterlogged": "true"}}, {Id: 44, Properties: map[string]string{"age": "0", "hanging": "false", "stage": "0", "waterlogged": "false"}}, {Id: 45, Properties: map[string]string{"age": "0", "hanging": "false", "stage": "1", "waterlogged": "true"}}, {Id: 46, Properties: map[string]string{"age": "0", "hanging": "false", "stage": "1", "waterlogged": "false"}}, {Id: 47, Properties: map[string]string{"age": "1", "hanging": "true", "stage": "0", "waterlogged": "true"}}, {Id: 48, Properties: map[string]string{"age": "1", "hanging": "true", "stage": "0", "waterlogged": "false"}}, {Id: 49, Properties: map[string]string{"age": "1", "hanging": "true", "stage": "1", "waterlogged": "true"}}, {Id: 50, Properties: map[string]string{"age": "1", "hanging": "true", "stage": "1", "waterlogged": "false"}}, {Id: 51, Properties: map[string]string{"age": "1", "hanging": "false", "stage": "0", "waterlogged": "true"}}, {Id: 52, Properties: map[string]string{"age": "1", "hanging": "false", "stage": "0", "waterlogged": "false"}}, {Id: 53, Properties: map[string]string{"age": "1", "hanging": "false", "stage": "1", "waterlogged": "true"}}, {Id: 54, Properties: map[string]string{"age": "1", "hanging": "false", "stage": "1", "waterlogged": "false"}}, {Id: 55, Properties: map[string]string{"age": "2", "hanging": "true", "stage": "0", "waterlogged": "true"}}, {Id: 56, Properties: map[string]string{"age": "2", "hanging": "true", "stage": "0", "waterlogged": "false"}}, {Id: 57, Properties: map[string]string{"age": "2", "hanging": "true", "stage": "1", "waterlogged": "true"}}, {Id: 58, Properties: map[string]string{"age": "2", "hanging": "true", "stage": "1", "waterlogged": "false"}}, {Id: 59, Properties: map[string]string{"age": "2", "hanging": "false", "stage": "0", "waterlogged": "true"}}, {Id: 60, Properties: map[string]string{"age": "2", "hanging": "false", "stage": "0", "waterlogged": "false"}}, {Id: 61, Properties: map[string]string{"age": "2", "hanging": "false", "stage": "1", "waterlogged": "true"}}, {Id: 62, Properties: map[string]string{"age": "2", "hanging": "false", "stage": "1", "waterlogged": "false"}}, {Id: 63, Properties: map[string]string{"age": "3", "hanging": "true", "stage": "0", "waterlogged": "true"}}, {Id: 64, Properties: map[string]string{"age": "3", "hanging": "true", "stage": "0", "waterlogged": "false"}}, {Id: 65, Properties: map[string]string{"age": "3", "hanging": "true", "stage": "1", "waterlogged": "true"}}, {Id: 66, Properties: map[string]string{"age": "3", "hanging": "true", "stage": "1", "waterlogged": "false"}}, {Id: 67, Properties: map[string]string{"age": "3", "hanging": "false", "stage": "0", "waterlogged": "true"}}, {Id: 68, Properties: map[string]string{"age": "3", "hanging": "false", "stage": "0", "waterlogged": "false"}}, {Id: 69, Properties: map[string]string{"age": "3", "hanging": "false", "stage": "1", "waterlogged": "true"}}, {Id: 70, Properties: map[string]string{"age": "3", "hanging": "false", "stage": "1", "waterlogged": "false"}}, {Id: 71, Properties: map[string]string{"age": "4", "hanging": "true", "stage": "0", "waterlogged": "true"}}, {Id: 72, Properties: map[string]string{"age": "4", "hanging": "true", "stage": "0", "waterlogged": "false"}}, {Id: 73, Properties: map[string]string{"age": "4", "hanging": "true", "stage": "1", "waterlogged": "true"}}, {Id: 74, Properties: map[string]string{"age": "4", "hanging": "true", "stage": "1", "waterlogged": "false"}}, {Id: 75, Properties: map[string]string{"age": "4", "hanging": "false", "stage": "0", "waterlogged": "true"}}, {Id: 76, Properties: map[string]string{"age": "4", "hanging": "false", "stage": "0", "waterlogged": "false"}}, {Id: 77, Properties: map[string]string{"age": "4", "hanging": "false", "stage": "1", "waterlogged": "true"}}, {Id: 78, Properties: map[string]string{"age": "4", "hanging": "false", "stage": "1", "waterlogged": "false"}}}}, "minecraft:mangrove_roots": {States: []{{Id: 154, Properties: map[string]string{"waterlogged": "true"}}, {Id: 155, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:mangrove_sign": {States: []{{Id: 4526, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 4527, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 4528, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 4529, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 4530, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 4531, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 4532, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 4533, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 4534, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 4535, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 4536, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 4537, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 4538, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 4539, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 4540, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 4541, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 4542, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 4543, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 4544, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 4545, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 4546, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 4547, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 4548, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 4549, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 4550, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 4551, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 4552, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 4553, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 4554, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 4555, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 4556, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 4557, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:mangrove_slab": {States: []{{Id: 11204, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11205, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11206, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11207, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11208, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11209, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:mangrove_stairs": {States: []{{Id: 10124, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10125, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10126, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10127, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10128, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10129, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10130, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10131, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10132, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10133, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10134, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10135, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10136, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10137, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10138, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10139, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10140, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10141, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10142, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10143, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10144, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10145, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10146, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10147, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10148, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10149, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10150, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10151, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10152, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10153, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10154, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10155, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10156, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10157, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10158, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10159, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10160, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10161, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10162, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10163, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10164, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10165, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10166, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10167, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10168, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10169, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10170, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10171, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10172, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10173, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10174, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10175, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10176, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10177, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10178, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10179, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10180, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10181, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10182, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10183, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10184, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10185, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10186, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10187, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10188, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10189, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10190, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10191, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10192, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10193, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10194, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10195, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10196, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10197, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10198, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10199, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10200, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10201, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10202, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10203, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:mangrove_trapdoor": {States: []{{Id: 6409, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6410, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6411, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6412, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6413, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6414, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6415, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6416, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6417, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6418, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6419, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6420, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6421, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6422, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6423, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6424, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6425, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6426, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6427, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6428, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6429, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6430, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6431, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6432, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6433, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6434, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6435, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6436, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6437, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6438, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6439, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6440, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6441, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6442, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6443, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6444, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6445, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6446, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6447, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6448, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6449, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6450, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6451, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6452, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6453, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6454, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6455, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6456, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6457, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6458, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6459, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6460, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6461, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6462, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6463, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6464, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6465, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6466, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6467, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6468, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6469, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6470, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6471, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6472, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:mangrove_wall_hanging_sign": {States: []{{Id: 5594, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5595, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5596, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5597, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5598, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5599, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5600, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5601, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:mangrove_wall_sign": {States: []{{Id: 4818, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 4819, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 4820, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 4821, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 4822, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 4823, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 4824, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 4825, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:mangrove_wood": {States: []{{Id: 210, Properties: map[string]string{"axis": "x"}}, {Id: 211, Properties: map[string]string{"axis": "y"}}, {Id: 212, Properties: map[string]string{"axis": "z"}}}}, "minecraft:medium_amethyst_bud": {States: []{{Id: 21057, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 21058, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 21059, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 21060, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}, {Id: 21061, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 21062, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 21063, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 21064, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 21065, Properties: map[string]string{"facing": "up", "waterlogged": "true"}}, {Id: 21066, Properties: map[string]string{"facing": "up", "waterlogged": "false"}}, {Id: 21067, Properties: map[string]string{"facing": "down", "waterlogged": "true"}}, {Id: 21068, Properties: map[string]string{"facing": "down", "waterlogged": "false"}}}}, "minecraft:melon": {States: []{{Id: 6812, Properties: map[string]string{}}}}, "minecraft:melon_stem": {States: []{{Id: 6829, Properties: map[string]string{"age": "0"}}, {Id: 6830, Properties: map[string]string{"age": "1"}}, {Id: 6831, Properties: map[string]string{"age": "2"}}, {Id: 6832, Properties: map[string]string{"age": "3"}}, {Id: 6833, Properties: map[string]string{"age": "4"}}, {Id: 6834, Properties: map[string]string{"age": "5"}}, {Id: 6835, Properties: map[string]string{"age": "6"}}, {Id: 6836, Properties: map[string]string{"age": "7"}}}}, "minecraft:moss_block": {States: []{{Id: 24843, Properties: map[string]string{}}}}, "minecraft:moss_carpet": {States: []{{Id: 24826, Properties: map[string]string{}}}}, "minecraft:mossy_cobblestone": {States: []{{Id: 2353, Properties: map[string]string{}}}}, "minecraft:mossy_cobblestone_slab": {States: []{{Id: 14106, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14107, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14108, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14109, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14110, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14111, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:mossy_cobblestone_stairs": {States: []{{Id: 13282, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13283, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13284, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13285, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13286, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13287, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13288, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13289, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13290, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13291, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13292, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13293, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13294, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13295, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13296, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13297, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13298, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13299, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13300, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13301, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13302, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13303, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13304, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13305, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13306, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13307, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13308, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13309, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13310, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13311, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13312, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13313, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13314, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13315, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13316, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13317, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13318, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13319, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13320, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13321, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13322, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13323, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13324, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13325, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13326, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13327, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13328, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13329, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13330, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13331, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13332, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13333, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13334, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13335, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13336, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13337, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13338, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13339, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13340, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13341, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13342, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13343, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13344, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13345, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13346, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13347, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13348, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13349, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13350, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13351, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13352, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13353, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13354, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13355, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13356, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13357, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13358, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13359, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13360, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13361, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:mossy_cobblestone_wall": {States: []{{Id: 8243, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8244, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8245, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8246, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8247, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8248, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8249, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8250, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8251, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8252, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8253, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8254, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8255, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8256, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8257, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8258, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8259, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8260, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8261, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8262, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8263, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8264, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8265, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8266, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8267, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8268, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8269, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8270, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8271, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8272, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8273, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8274, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8275, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8276, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8277, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8278, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8279, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8280, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8281, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8282, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8283, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8284, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8285, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8286, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8287, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8288, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8289, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8290, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8291, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8292, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8293, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8294, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8295, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8296, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8297, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8298, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8299, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8300, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8301, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8302, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8303, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8304, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8305, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8306, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8307, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8308, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8309, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8310, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8311, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8312, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8313, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8314, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8315, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8316, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8317, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8318, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8319, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8320, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8321, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8322, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8323, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8324, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8325, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8326, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8327, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8328, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8329, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8330, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8331, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8332, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8333, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8334, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8335, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8336, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8337, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8338, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8339, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8340, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8341, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8342, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8343, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8344, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8345, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8346, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8347, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8348, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8349, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8350, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8351, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8352, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8353, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8354, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8355, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8356, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8357, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8358, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8359, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8360, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8361, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8362, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8363, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8364, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8365, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8366, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8367, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8368, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8369, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8370, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8371, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8372, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8373, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8374, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8375, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8376, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8377, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8378, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8379, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8380, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8381, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8382, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8383, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8384, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8385, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8386, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8387, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8388, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8389, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8390, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8391, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8392, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8393, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8394, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8395, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8396, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8397, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8398, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8399, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8400, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8401, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8402, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8403, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8404, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8405, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8406, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8407, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8408, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8409, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8410, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8411, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8412, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8413, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8414, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8415, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8416, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8417, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8418, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8419, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8420, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8421, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8422, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8423, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8424, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8425, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8426, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8427, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8428, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8429, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8430, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8431, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8432, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8433, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8434, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8435, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8436, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8437, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8438, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8439, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8440, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8441, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8442, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8443, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8444, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8445, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8446, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8447, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8448, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8449, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8450, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8451, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8452, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8453, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8454, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8455, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8456, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8457, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8458, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8459, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8460, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8461, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8462, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8463, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8464, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8465, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8466, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8467, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8468, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8469, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8470, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8471, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8472, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8473, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8474, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8475, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8476, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8477, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8478, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8479, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8480, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8481, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8482, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8483, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8484, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8485, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8486, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8487, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8488, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8489, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8490, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8491, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8492, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8493, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8494, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8495, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8496, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8497, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8498, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8499, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8500, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8501, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8502, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8503, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8504, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8505, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8506, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8507, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8508, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8509, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8510, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8511, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8512, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8513, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8514, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8515, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8516, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8517, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8518, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8519, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8520, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8521, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8522, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8523, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8524, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8525, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8526, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8527, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8528, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8529, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8530, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8531, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8532, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8533, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8534, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8535, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8536, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8537, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8538, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8539, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8540, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8541, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8542, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8543, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8544, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8545, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8546, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8547, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8548, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8549, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8550, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8551, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8552, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8553, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8554, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 8555, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 8556, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 8557, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 8558, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 8559, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 8560, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 8561, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 8562, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 8563, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 8564, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 8565, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 8566, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:mossy_stone_brick_slab": {States: []{{Id: 14094, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14095, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14096, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14097, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14098, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14099, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:mossy_stone_brick_stairs": {States: []{{Id: 13122, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13123, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13124, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13125, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13126, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13127, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13128, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13129, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13130, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13131, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13132, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13133, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13134, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13135, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13136, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13137, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13138, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13139, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13140, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13141, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13142, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13143, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13144, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13145, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13146, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13147, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13148, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13149, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13150, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13151, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13152, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13153, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13154, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13155, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13156, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13157, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13158, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13159, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13160, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13161, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13162, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13163, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13164, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13165, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13166, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13167, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13168, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13169, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13170, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13171, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13172, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13173, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13174, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13175, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13176, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13177, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13178, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13179, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13180, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13181, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13182, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13183, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13184, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13185, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13186, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13187, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13188, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13189, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13190, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13191, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13192, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13193, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13194, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13195, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13196, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13197, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13198, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13199, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13200, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13201, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:mossy_stone_brick_wall": {States: []{{Id: 15132, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15133, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15134, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15135, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15136, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15137, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15138, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15139, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15140, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15141, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15142, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15143, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15144, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15145, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15146, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15147, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15148, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15149, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15150, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15151, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15152, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15153, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15154, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15155, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15156, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15157, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15158, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15159, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15160, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15161, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15162, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15163, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15164, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15165, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15166, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15167, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15168, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15169, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15170, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15171, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15172, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15173, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15174, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15175, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15176, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15177, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15178, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15179, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15180, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15181, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15182, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15183, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15184, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15185, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15186, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15187, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15188, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15189, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15190, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15191, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15192, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15193, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15194, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15195, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15196, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15197, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15198, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15199, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15200, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15201, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15202, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15203, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15204, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15205, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15206, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15207, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15208, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15209, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15210, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15211, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15212, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15213, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15214, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15215, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15216, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15217, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15218, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15219, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15220, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15221, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15222, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15223, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15224, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15225, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15226, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15227, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15228, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15229, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15230, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15231, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15232, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15233, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15234, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15235, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15236, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15237, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15238, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15239, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15240, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15241, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15242, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15243, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15244, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15245, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15246, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15247, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15248, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15249, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15250, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15251, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15252, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15253, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15254, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15255, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15256, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15257, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15258, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15259, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15260, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15261, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15262, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15263, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15264, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15265, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15266, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15267, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15268, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15269, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15270, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15271, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15272, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15273, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15274, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15275, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15276, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15277, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15278, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15279, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15280, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15281, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15282, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15283, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15284, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15285, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15286, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15287, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15288, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15289, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15290, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15291, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15292, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15293, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15294, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15295, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15296, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15297, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15298, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15299, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15300, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15301, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15302, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15303, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15304, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15305, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15306, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15307, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15308, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15309, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15310, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15311, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15312, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15313, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15314, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15315, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15316, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15317, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15318, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15319, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15320, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15321, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15322, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15323, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15324, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15325, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15326, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15327, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15328, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15329, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15330, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15331, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15332, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15333, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15334, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15335, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15336, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15337, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15338, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15339, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15340, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15341, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15342, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15343, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15344, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15345, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15346, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15347, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15348, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15349, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15350, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15351, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15352, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15353, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15354, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15355, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15356, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15357, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15358, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15359, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15360, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15361, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15362, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15363, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15364, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15365, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15366, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15367, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15368, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15369, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15370, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15371, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15372, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15373, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15374, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15375, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15376, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15377, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15378, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15379, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15380, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15381, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15382, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15383, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15384, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15385, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15386, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15387, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15388, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15389, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15390, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15391, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15392, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15393, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15394, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15395, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15396, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15397, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15398, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15399, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15400, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15401, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15402, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15403, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15404, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15405, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15406, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15407, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15408, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15409, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15410, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15411, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15412, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15413, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15414, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15415, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15416, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15417, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15418, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15419, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15420, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15421, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15422, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15423, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15424, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15425, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15426, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15427, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15428, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15429, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15430, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15431, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15432, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15433, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15434, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15435, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15436, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15437, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15438, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15439, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15440, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15441, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15442, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15443, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15444, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15445, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15446, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15447, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15448, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15449, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15450, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15451, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15452, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15453, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15454, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15455, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:mossy_stone_bricks": {States: []{{Id: 6538, Properties: map[string]string{}}}}, "minecraft:moving_piston": {States: []{{Id: 2063, Properties: map[string]string{"facing": "north", "type": "normal"}}, {Id: 2064, Properties: map[string]string{"facing": "north", "type": "sticky"}}, {Id: 2065, Properties: map[string]string{"facing": "east", "type": "normal"}}, {Id: 2066, Properties: map[string]string{"facing": "east", "type": "sticky"}}, {Id: 2067, Properties: map[string]string{"facing": "south", "type": "normal"}}, {Id: 2068, Properties: map[string]string{"facing": "south", "type": "sticky"}}, {Id: 2069, Properties: map[string]string{"facing": "west", "type": "normal"}}, {Id: 2070, Properties: map[string]string{"facing": "west", "type": "sticky"}}, {Id: 2071, Properties: map[string]string{"facing": "up", "type": "normal"}}, {Id: 2072, Properties: map[string]string{"facing": "up", "type": "sticky"}}, {Id: 2073, Properties: map[string]string{"facing": "down", "type": "normal"}}, {Id: 2074, Properties: map[string]string{"facing": "down", "type": "sticky"}}}}, "minecraft:mud": {States: []{{Id: 24903, Properties: map[string]string{}}}}, "minecraft:mud_brick_slab": {States: []{{Id: 11270, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11271, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11272, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11273, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11274, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11275, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:mud_brick_stairs": {States: []{{Id: 7189, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7190, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7191, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7192, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7193, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7194, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7195, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7196, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7197, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7198, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7199, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7200, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7201, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7202, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7203, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7204, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7205, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7206, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7207, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7208, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7209, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7210, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7211, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7212, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7213, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7214, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7215, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7216, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7217, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7218, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7219, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7220, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7221, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7222, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7223, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7224, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7225, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7226, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7227, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7228, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7229, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7230, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7231, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7232, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7233, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7234, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7235, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7236, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7237, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7238, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7239, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7240, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7241, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7242, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7243, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7244, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7245, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7246, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7247, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7248, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7249, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7250, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7251, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7252, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7253, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7254, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7255, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7256, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7257, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7258, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7259, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7260, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7261, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7262, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7263, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7264, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7265, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7266, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7267, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7268, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:mud_brick_wall": {States: []{{Id: 16104, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16105, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16106, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16107, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16108, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16109, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16110, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16111, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16112, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16113, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16114, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16115, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16116, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16117, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16118, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16119, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16120, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16121, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16122, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16123, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16124, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16125, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16126, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16127, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16128, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16129, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16130, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16131, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16132, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16133, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16134, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16135, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16136, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16137, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16138, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16139, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16140, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16141, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16142, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16143, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16144, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16145, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16146, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16147, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16148, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16149, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16150, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16151, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16152, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16153, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16154, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16155, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16156, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16157, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16158, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16159, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16160, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16161, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16162, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16163, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16164, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16165, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16166, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16167, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16168, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16169, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16170, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16171, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16172, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16173, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16174, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16175, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16176, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16177, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16178, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16179, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16180, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16181, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16182, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16183, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16184, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16185, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16186, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16187, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16188, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16189, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16190, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16191, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16192, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16193, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16194, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16195, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16196, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16197, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16198, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16199, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16200, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16201, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16202, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16203, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16204, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16205, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16206, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16207, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16208, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16209, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16210, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16211, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16212, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16213, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16214, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16215, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16216, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16217, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16218, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16219, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16220, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16221, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16222, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16223, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16224, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16225, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16226, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16227, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16228, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16229, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16230, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16231, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16232, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16233, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16234, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16235, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16236, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16237, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16238, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16239, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16240, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16241, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16242, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16243, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16244, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16245, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16246, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16247, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16248, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16249, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16250, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16251, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16252, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16253, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16254, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16255, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16256, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16257, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16258, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16259, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16260, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16261, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16262, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16263, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16264, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16265, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16266, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16267, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16268, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16269, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16270, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16271, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16272, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16273, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16274, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16275, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16276, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16277, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16278, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16279, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16280, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16281, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16282, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16283, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16284, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16285, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16286, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16287, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16288, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16289, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16290, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16291, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16292, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16293, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16294, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16295, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16296, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16297, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16298, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16299, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16300, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16301, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16302, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16303, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16304, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16305, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16306, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16307, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16308, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16309, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16310, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16311, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16312, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16313, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16314, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16315, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16316, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16317, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16318, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16319, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16320, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16321, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16322, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16323, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16324, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16325, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16326, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16327, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16328, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16329, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16330, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16331, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16332, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16333, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16334, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16335, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16336, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16337, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16338, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16339, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16340, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16341, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16342, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16343, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16344, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16345, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16346, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16347, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16348, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16349, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16350, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16351, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16352, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16353, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16354, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16355, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16356, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16357, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16358, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16359, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16360, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16361, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16362, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16363, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16364, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16365, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16366, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16367, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16368, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16369, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16370, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16371, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16372, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16373, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16374, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16375, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16376, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16377, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16378, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16379, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16380, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16381, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16382, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16383, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16384, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16385, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16386, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16387, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16388, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16389, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16390, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16391, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16392, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16393, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16394, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16395, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16396, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16397, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16398, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16399, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16400, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16401, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16402, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16403, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16404, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16405, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16406, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16407, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16408, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16409, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16410, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16411, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16412, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16413, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16414, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16415, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16416, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16417, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16418, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16419, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16420, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16421, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16422, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16423, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16424, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16425, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16426, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16427, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:mud_bricks": {States: []{{Id: 6542, Properties: map[string]string{}}}}, "minecraft:muddy_mangrove_roots": {States: []{{Id: 156, Properties: map[string]string{"axis": "x"}}, {Id: 157, Properties: map[string]string{"axis": "y"}}, {Id: 158, Properties: map[string]string{"axis": "z"}}}}, "minecraft:mushroom_stem": {States: []{{Id: 6677, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6678, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6679, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6680, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6681, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6682, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6683, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6684, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6685, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6686, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6687, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6688, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6689, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6690, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6691, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6692, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 6693, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6694, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6695, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6696, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6697, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6698, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6699, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6700, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6701, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6702, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6703, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6704, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6705, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6706, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6707, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6708, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 6709, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6710, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6711, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6712, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6713, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6714, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6715, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6716, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6717, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6718, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6719, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6720, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6721, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6722, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6723, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6724, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 6725, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6726, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6727, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6728, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6729, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6730, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6731, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6732, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6733, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6734, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6735, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6736, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6737, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6738, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6739, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6740, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}}}, "minecraft:mycelium": {States: []{{Id: 7269, Properties: map[string]string{"snowy": "true"}}, {Id: 7270, Properties: map[string]string{"snowy": "false"}}}}, "minecraft:nether_brick_fence": {States: []{{Id: 7273, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 7274, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 7275, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 7276, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 7277, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 7278, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 7279, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 7280, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 7281, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 7282, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 7283, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 7284, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 7285, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 7286, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 7287, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 7288, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 7289, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 7290, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 7291, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 7292, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 7293, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 7294, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 7295, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 7296, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 7297, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 7298, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 7299, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 7300, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 7301, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 7302, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 7303, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 7304, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:nether_brick_slab": {States: []{{Id: 11276, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11277, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11278, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11279, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11280, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11281, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:nether_brick_stairs": {States: []{{Id: 7305, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7306, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7307, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7308, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7309, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7310, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7311, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7312, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7313, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7314, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7315, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7316, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7317, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7318, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7319, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7320, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7321, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7322, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7323, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7324, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7325, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7326, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7327, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7328, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7329, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7330, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7331, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7332, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7333, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7334, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7335, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7336, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7337, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7338, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7339, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7340, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7341, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7342, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7343, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7344, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7345, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7346, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7347, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7348, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7349, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7350, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7351, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7352, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7353, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7354, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7355, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7356, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7357, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7358, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7359, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7360, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7361, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7362, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7363, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7364, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7365, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7366, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7367, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7368, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7369, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7370, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7371, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7372, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7373, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7374, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7375, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7376, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7377, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7378, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7379, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7380, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7381, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7382, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7383, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7384, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:nether_brick_wall": {States: []{{Id: 16428, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16429, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16430, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16431, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16432, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16433, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16434, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16435, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16436, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16437, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16438, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16439, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16440, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16441, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16442, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16443, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16444, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16445, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16446, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16447, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16448, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16449, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16450, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16451, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16452, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16453, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16454, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16455, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16456, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16457, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16458, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16459, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16460, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16461, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16462, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16463, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16464, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16465, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16466, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16467, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16468, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16469, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16470, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16471, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16472, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16473, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16474, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16475, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16476, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16477, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16478, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16479, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16480, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16481, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16482, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16483, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16484, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16485, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16486, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16487, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16488, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16489, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16490, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16491, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16492, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16493, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16494, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16495, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16496, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16497, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16498, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16499, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16500, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16501, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16502, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16503, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16504, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16505, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16506, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16507, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16508, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16509, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16510, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16511, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16512, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16513, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16514, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16515, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16516, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16517, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16518, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16519, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16520, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16521, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16522, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16523, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16524, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16525, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16526, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16527, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16528, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16529, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16530, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16531, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16532, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16533, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16534, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16535, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16536, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16537, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16538, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16539, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16540, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16541, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16542, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16543, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16544, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16545, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16546, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16547, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16548, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16549, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16550, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16551, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16552, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16553, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16554, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16555, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16556, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16557, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16558, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16559, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16560, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16561, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16562, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16563, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16564, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16565, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16566, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16567, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16568, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16569, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16570, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16571, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16572, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16573, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16574, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16575, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16576, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16577, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16578, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16579, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16580, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16581, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16582, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16583, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16584, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16585, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16586, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16587, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16588, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16589, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16590, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16591, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16592, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16593, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16594, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16595, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16596, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16597, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16598, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16599, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16600, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16601, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16602, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16603, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16604, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16605, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16606, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16607, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16608, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16609, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16610, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16611, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16612, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16613, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16614, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16615, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16616, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16617, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16618, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16619, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16620, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16621, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16622, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16623, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16624, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16625, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16626, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16627, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16628, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16629, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16630, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16631, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16632, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16633, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16634, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16635, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16636, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16637, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16638, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16639, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16640, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16641, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16642, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16643, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16644, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16645, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16646, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16647, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16648, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16649, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16650, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16651, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16652, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16653, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16654, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16655, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16656, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16657, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16658, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16659, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16660, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16661, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16662, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16663, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16664, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16665, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16666, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16667, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16668, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16669, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16670, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16671, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16672, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16673, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16674, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16675, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16676, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16677, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16678, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16679, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16680, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16681, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16682, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16683, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16684, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16685, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16686, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16687, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16688, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16689, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16690, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16691, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16692, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16693, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16694, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16695, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16696, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16697, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16698, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16699, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16700, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16701, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16702, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16703, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16704, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16705, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16706, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16707, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16708, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16709, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16710, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16711, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16712, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16713, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16714, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16715, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16716, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16717, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16718, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16719, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16720, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16721, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16722, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16723, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16724, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16725, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16726, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16727, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16728, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16729, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16730, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16731, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16732, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16733, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16734, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16735, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16736, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16737, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16738, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16739, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16740, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16741, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16742, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16743, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16744, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16745, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16746, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16747, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16748, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16749, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16750, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16751, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:nether_bricks": {States: []{{Id: 7272, Properties: map[string]string{}}}}, "minecraft:nether_gold_ore": {States: []{{Id: 129, Properties: map[string]string{}}}}, "minecraft:nether_portal": {States: []{{Id: 5864, Properties: map[string]string{"axis": "x"}}, {Id: 5865, Properties: map[string]string{"axis": "z"}}}}, "minecraft:nether_quartz_ore": {States: []{{Id: 9224, Properties: map[string]string{}}}}, "minecraft:nether_sprouts": {States: []{{Id: 18595, Properties: map[string]string{}}}}, "minecraft:nether_wart": {States: []{{Id: 7385, Properties: map[string]string{"age": "0"}}, {Id: 7386, Properties: map[string]string{"age": "1"}}, {Id: 7387, Properties: map[string]string{"age": "2"}}, {Id: 7388, Properties: map[string]string{"age": "3"}}}}, "minecraft:nether_wart_block": {States: []{{Id: 12544, Properties: map[string]string{}}}}, "minecraft:netherite_block": {States: []{{Id: 19447, Properties: map[string]string{}}}}, "minecraft:netherrack": {States: []{{Id: 5849, Properties: map[string]string{}}}}, "minecraft:note_block": {States: []{{Id: 538, Properties: map[string]string{"instrument": "harp", "note": "0", "powered": "true"}}, {Id: 539, Properties: map[string]string{"instrument": "harp", "note": "0", "powered": "false"}}, {Id: 540, Properties: map[string]string{"instrument": "harp", "note": "1", "powered": "true"}}, {Id: 541, Properties: map[string]string{"instrument": "harp", "note": "1", "powered": "false"}}, {Id: 542, Properties: map[string]string{"instrument": "harp", "note": "2", "powered": "true"}}, {Id: 543, Properties: map[string]string{"instrument": "harp", "note": "2", "powered": "false"}}, {Id: 544, Properties: map[string]string{"instrument": "harp", "note": "3", "powered": "true"}}, {Id: 545, Properties: map[string]string{"instrument": "harp", "note": "3", "powered": "false"}}, {Id: 546, Properties: map[string]string{"instrument": "harp", "note": "4", "powered": "true"}}, {Id: 547, Properties: map[string]string{"instrument": "harp", "note": "4", "powered": "false"}}, {Id: 548, Properties: map[string]string{"instrument": "harp", "note": "5", "powered": "true"}}, {Id: 549, Properties: map[string]string{"instrument": "harp", "note": "5", "powered": "false"}}, {Id: 550, Properties: map[string]string{"instrument": "harp", "note": "6", "powered": "true"}}, {Id: 551, Properties: map[string]string{"instrument": "harp", "note": "6", "powered": "false"}}, {Id: 552, Properties: map[string]string{"instrument": "harp", "note": "7", "powered": "true"}}, {Id: 553, Properties: map[string]string{"instrument": "harp", "note": "7", "powered": "false"}}, {Id: 554, Properties: map[string]string{"instrument": "harp", "note": "8", "powered": "true"}}, {Id: 555, Properties: map[string]string{"instrument": "harp", "note": "8", "powered": "false"}}, {Id: 556, Properties: map[string]string{"instrument": "harp", "note": "9", "powered": "true"}}, {Id: 557, Properties: map[string]string{"instrument": "harp", "note": "9", "powered": "false"}}, {Id: 558, Properties: map[string]string{"instrument": "harp", "note": "10", "powered": "true"}}, {Id: 559, Properties: map[string]string{"instrument": "harp", "note": "10", "powered": "false"}}, {Id: 560, Properties: map[string]string{"instrument": "harp", "note": "11", "powered": "true"}}, {Id: 561, Properties: map[string]string{"instrument": "harp", "note": "11", "powered": "false"}}, {Id: 562, Properties: map[string]string{"instrument": "harp", "note": "12", "powered": "true"}}, {Id: 563, Properties: map[string]string{"instrument": "harp", "note": "12", "powered": "false"}}, {Id: 564, Properties: map[string]string{"instrument": "harp", "note": "13", "powered": "true"}}, {Id: 565, Properties: map[string]string{"instrument": "harp", "note": "13", "powered": "false"}}, {Id: 566, Properties: map[string]string{"instrument": "harp", "note": "14", "powered": "true"}}, {Id: 567, Properties: map[string]string{"instrument": "harp", "note": "14", "powered": "false"}}, {Id: 568, Properties: map[string]string{"instrument": "harp", "note": "15", "powered": "true"}}, {Id: 569, Properties: map[string]string{"instrument": "harp", "note": "15", "powered": "false"}}, {Id: 570, Properties: map[string]string{"instrument": "harp", "note": "16", "powered": "true"}}, {Id: 571, Properties: map[string]string{"instrument": "harp", "note": "16", "powered": "false"}}, {Id: 572, Properties: map[string]string{"instrument": "harp", "note": "17", "powered": "true"}}, {Id: 573, Properties: map[string]string{"instrument": "harp", "note": "17", "powered": "false"}}, {Id: 574, Properties: map[string]string{"instrument": "harp", "note": "18", "powered": "true"}}, {Id: 575, Properties: map[string]string{"instrument": "harp", "note": "18", "powered": "false"}}, {Id: 576, Properties: map[string]string{"instrument": "harp", "note": "19", "powered": "true"}}, {Id: 577, Properties: map[string]string{"instrument": "harp", "note": "19", "powered": "false"}}, {Id: 578, Properties: map[string]string{"instrument": "harp", "note": "20", "powered": "true"}}, {Id: 579, Properties: map[string]string{"instrument": "harp", "note": "20", "powered": "false"}}, {Id: 580, Properties: map[string]string{"instrument": "harp", "note": "21", "powered": "true"}}, {Id: 581, Properties: map[string]string{"instrument": "harp", "note": "21", "powered": "false"}}, {Id: 582, Properties: map[string]string{"instrument": "harp", "note": "22", "powered": "true"}}, {Id: 583, Properties: map[string]string{"instrument": "harp", "note": "22", "powered": "false"}}, {Id: 584, Properties: map[string]string{"instrument": "harp", "note": "23", "powered": "true"}}, {Id: 585, Properties: map[string]string{"instrument": "harp", "note": "23", "powered": "false"}}, {Id: 586, Properties: map[string]string{"instrument": "harp", "note": "24", "powered": "true"}}, {Id: 587, Properties: map[string]string{"instrument": "harp", "note": "24", "powered": "false"}}, {Id: 588, Properties: map[string]string{"instrument": "basedrum", "note": "0", "powered": "true"}}, {Id: 589, Properties: map[string]string{"instrument": "basedrum", "note": "0", "powered": "false"}}, {Id: 590, Properties: map[string]string{"instrument": "basedrum", "note": "1", "powered": "true"}}, {Id: 591, Properties: map[string]string{"instrument": "basedrum", "note": "1", "powered": "false"}}, {Id: 592, Properties: map[string]string{"instrument": "basedrum", "note": "2", "powered": "true"}}, {Id: 593, Properties: map[string]string{"instrument": "basedrum", "note": "2", "powered": "false"}}, {Id: 594, Properties: map[string]string{"instrument": "basedrum", "note": "3", "powered": "true"}}, {Id: 595, Properties: map[string]string{"instrument": "basedrum", "note": "3", "powered": "false"}}, {Id: 596, Properties: map[string]string{"instrument": "basedrum", "note": "4", "powered": "true"}}, {Id: 597, Properties: map[string]string{"instrument": "basedrum", "note": "4", "powered": "false"}}, {Id: 598, Properties: map[string]string{"instrument": "basedrum", "note": "5", "powered": "true"}}, {Id: 599, Properties: map[string]string{"instrument": "basedrum", "note": "5", "powered": "false"}}, {Id: 600, Properties: map[string]string{"instrument": "basedrum", "note": "6", "powered": "true"}}, {Id: 601, Properties: map[string]string{"instrument": "basedrum", "note": "6", "powered": "false"}}, {Id: 602, Properties: map[string]string{"instrument": "basedrum", "note": "7", "powered": "true"}}, {Id: 603, Properties: map[string]string{"instrument": "basedrum", "note": "7", "powered": "false"}}, {Id: 604, Properties: map[string]string{"instrument": "basedrum", "note": "8", "powered": "true"}}, {Id: 605, Properties: map[string]string{"instrument": "basedrum", "note": "8", "powered": "false"}}, {Id: 606, Properties: map[string]string{"instrument": "basedrum", "note": "9", "powered": "true"}}, {Id: 607, Properties: map[string]string{"instrument": "basedrum", "note": "9", "powered": "false"}}, {Id: 608, Properties: map[string]string{"instrument": "basedrum", "note": "10", "powered": "true"}}, {Id: 609, Properties: map[string]string{"instrument": "basedrum", "note": "10", "powered": "false"}}, {Id: 610, Properties: map[string]string{"instrument": "basedrum", "note": "11", "powered": "true"}}, {Id: 611, Properties: map[string]string{"instrument": "basedrum", "note": "11", "powered": "false"}}, {Id: 612, Properties: map[string]string{"instrument": "basedrum", "note": "12", "powered": "true"}}, {Id: 613, Properties: map[string]string{"instrument": "basedrum", "note": "12", "powered": "false"}}, {Id: 614, Properties: map[string]string{"instrument": "basedrum", "note": "13", "powered": "true"}}, {Id: 615, Properties: map[string]string{"instrument": "basedrum", "note": "13", "powered": "false"}}, {Id: 616, Properties: map[string]string{"instrument": "basedrum", "note": "14", "powered": "true"}}, {Id: 617, Properties: map[string]string{"instrument": "basedrum", "note": "14", "powered": "false"}}, {Id: 618, Properties: map[string]string{"instrument": "basedrum", "note": "15", "powered": "true"}}, {Id: 619, Properties: map[string]string{"instrument": "basedrum", "note": "15", "powered": "false"}}, {Id: 620, Properties: map[string]string{"instrument": "basedrum", "note": "16", "powered": "true"}}, {Id: 621, Properties: map[string]string{"instrument": "basedrum", "note": "16", "powered": "false"}}, {Id: 622, Properties: map[string]string{"instrument": "basedrum", "note": "17", "powered": "true"}}, {Id: 623, Properties: map[string]string{"instrument": "basedrum", "note": "17", "powered": "false"}}, {Id: 624, Properties: map[string]string{"instrument": "basedrum", "note": "18", "powered": "true"}}, {Id: 625, Properties: map[string]string{"instrument": "basedrum", "note": "18", "powered": "false"}}, {Id: 626, Properties: map[string]string{"instrument": "basedrum", "note": "19", "powered": "true"}}, {Id: 627, Properties: map[string]string{"instrument": "basedrum", "note": "19", "powered": "false"}}, {Id: 628, Properties: map[string]string{"instrument": "basedrum", "note": "20", "powered": "true"}}, {Id: 629, Properties: map[string]string{"instrument": "basedrum", "note": "20", "powered": "false"}}, {Id: 630, Properties: map[string]string{"instrument": "basedrum", "note": "21", "powered": "true"}}, {Id: 631, Properties: map[string]string{"instrument": "basedrum", "note": "21", "powered": "false"}}, {Id: 632, Properties: map[string]string{"instrument": "basedrum", "note": "22", "powered": "true"}}, {Id: 633, Properties: map[string]string{"instrument": "basedrum", "note": "22", "powered": "false"}}, {Id: 634, Properties: map[string]string{"instrument": "basedrum", "note": "23", "powered": "true"}}, {Id: 635, Properties: map[string]string{"instrument": "basedrum", "note": "23", "powered": "false"}}, {Id: 636, Properties: map[string]string{"instrument": "basedrum", "note": "24", "powered": "true"}}, {Id: 637, Properties: map[string]string{"instrument": "basedrum", "note": "24", "powered": "false"}}, {Id: 638, Properties: map[string]string{"instrument": "snare", "note": "0", "powered": "true"}}, {Id: 639, Properties: map[string]string{"instrument": "snare", "note": "0", "powered": "false"}}, {Id: 640, Properties: map[string]string{"instrument": "snare", "note": "1", "powered": "true"}}, {Id: 641, Properties: map[string]string{"instrument": "snare", "note": "1", "powered": "false"}}, {Id: 642, Properties: map[string]string{"instrument": "snare", "note": "2", "powered": "true"}}, {Id: 643, Properties: map[string]string{"instrument": "snare", "note": "2", "powered": "false"}}, {Id: 644, Properties: map[string]string{"instrument": "snare", "note": "3", "powered": "true"}}, {Id: 645, Properties: map[string]string{"instrument": "snare", "note": "3", "powered": "false"}}, {Id: 646, Properties: map[string]string{"instrument": "snare", "note": "4", "powered": "true"}}, {Id: 647, Properties: map[string]string{"instrument": "snare", "note": "4", "powered": "false"}}, {Id: 648, Properties: map[string]string{"instrument": "snare", "note": "5", "powered": "true"}}, {Id: 649, Properties: map[string]string{"instrument": "snare", "note": "5", "powered": "false"}}, {Id: 650, Properties: map[string]string{"instrument": "snare", "note": "6", "powered": "true"}}, {Id: 651, Properties: map[string]string{"instrument": "snare", "note": "6", "powered": "false"}}, {Id: 652, Properties: map[string]string{"instrument": "snare", "note": "7", "powered": "true"}}, {Id: 653, Properties: map[string]string{"instrument": "snare", "note": "7", "powered": "false"}}, {Id: 654, Properties: map[string]string{"instrument": "snare", "note": "8", "powered": "true"}}, {Id: 655, Properties: map[string]string{"instrument": "snare", "note": "8", "powered": "false"}}, {Id: 656, Properties: map[string]string{"instrument": "snare", "note": "9", "powered": "true"}}, {Id: 657, Properties: map[string]string{"instrument": "snare", "note": "9", "powered": "false"}}, {Id: 658, Properties: map[string]string{"instrument": "snare", "note": "10", "powered": "true"}}, {Id: 659, Properties: map[string]string{"instrument": "snare", "note": "10", "powered": "false"}}, {Id: 660, Properties: map[string]string{"instrument": "snare", "note": "11", "powered": "true"}}, {Id: 661, Properties: map[string]string{"instrument": "snare", "note": "11", "powered": "false"}}, {Id: 662, Properties: map[string]string{"instrument": "snare", "note": "12", "powered": "true"}}, {Id: 663, Properties: map[string]string{"instrument": "snare", "note": "12", "powered": "false"}}, {Id: 664, Properties: map[string]string{"instrument": "snare", "note": "13", "powered": "true"}}, {Id: 665, Properties: map[string]string{"instrument": "snare", "note": "13", "powered": "false"}}, {Id: 666, Properties: map[string]string{"instrument": "snare", "note": "14", "powered": "true"}}, {Id: 667, Properties: map[string]string{"instrument": "snare", "note": "14", "powered": "false"}}, {Id: 668, Properties: map[string]string{"instrument": "snare", "note": "15", "powered": "true"}}, {Id: 669, Properties: map[string]string{"instrument": "snare", "note": "15", "powered": "false"}}, {Id: 670, Properties: map[string]string{"instrument": "snare", "note": "16", "powered": "true"}}, {Id: 671, Properties: map[string]string{"instrument": "snare", "note": "16", "powered": "false"}}, {Id: 672, Properties: map[string]string{"instrument": "snare", "note": "17", "powered": "true"}}, {Id: 673, Properties: map[string]string{"instrument": "snare", "note": "17", "powered": "false"}}, {Id: 674, Properties: map[string]string{"instrument": "snare", "note": "18", "powered": "true"}}, {Id: 675, Properties: map[string]string{"instrument": "snare", "note": "18", "powered": "false"}}, {Id: 676, Properties: map[string]string{"instrument": "snare", "note": "19", "powered": "true"}}, {Id: 677, Properties: map[string]string{"instrument": "snare", "note": "19", "powered": "false"}}, {Id: 678, Properties: map[string]string{"instrument": "snare", "note": "20", "powered": "true"}}, {Id: 679, Properties: map[string]string{"instrument": "snare", "note": "20", "powered": "false"}}, {Id: 680, Properties: map[string]string{"instrument": "snare", "note": "21", "powered": "true"}}, {Id: 681, Properties: map[string]string{"instrument": "snare", "note": "21", "powered": "false"}}, {Id: 682, Properties: map[string]string{"instrument": "snare", "note": "22", "powered": "true"}}, {Id: 683, Properties: map[string]string{"instrument": "snare", "note": "22", "powered": "false"}}, {Id: 684, Properties: map[string]string{"instrument": "snare", "note": "23", "powered": "true"}}, {Id: 685, Properties: map[string]string{"instrument": "snare", "note": "23", "powered": "false"}}, {Id: 686, Properties: map[string]string{"instrument": "snare", "note": "24", "powered": "true"}}, {Id: 687, Properties: map[string]string{"instrument": "snare", "note": "24", "powered": "false"}}, {Id: 688, Properties: map[string]string{"instrument": "hat", "note": "0", "powered": "true"}}, {Id: 689, Properties: map[string]string{"instrument": "hat", "note": "0", "powered": "false"}}, {Id: 690, Properties: map[string]string{"instrument": "hat", "note": "1", "powered": "true"}}, {Id: 691, Properties: map[string]string{"instrument": "hat", "note": "1", "powered": "false"}}, {Id: 692, Properties: map[string]string{"instrument": "hat", "note": "2", "powered": "true"}}, {Id: 693, Properties: map[string]string{"instrument": "hat", "note": "2", "powered": "false"}}, {Id: 694, Properties: map[string]string{"instrument": "hat", "note": "3", "powered": "true"}}, {Id: 695, Properties: map[string]string{"instrument": "hat", "note": "3", "powered": "false"}}, {Id: 696, Properties: map[string]string{"instrument": "hat", "note": "4", "powered": "true"}}, {Id: 697, Properties: map[string]string{"instrument": "hat", "note": "4", "powered": "false"}}, {Id: 698, Properties: map[string]string{"instrument": "hat", "note": "5", "powered": "true"}}, {Id: 699, Properties: map[string]string{"instrument": "hat", "note": "5", "powered": "false"}}, {Id: 700, Properties: map[string]string{"instrument": "hat", "note": "6", "powered": "true"}}, {Id: 701, Properties: map[string]string{"instrument": "hat", "note": "6", "powered": "false"}}, {Id: 702, Properties: map[string]string{"instrument": "hat", "note": "7", "powered": "true"}}, {Id: 703, Properties: map[string]string{"instrument": "hat", "note": "7", "powered": "false"}}, {Id: 704, Properties: map[string]string{"instrument": "hat", "note": "8", "powered": "true"}}, {Id: 705, Properties: map[string]string{"instrument": "hat", "note": "8", "powered": "false"}}, {Id: 706, Properties: map[string]string{"instrument": "hat", "note": "9", "powered": "true"}}, {Id: 707, Properties: map[string]string{"instrument": "hat", "note": "9", "powered": "false"}}, {Id: 708, Properties: map[string]string{"instrument": "hat", "note": "10", "powered": "true"}}, {Id: 709, Properties: map[string]string{"instrument": "hat", "note": "10", "powered": "false"}}, {Id: 710, Properties: map[string]string{"instrument": "hat", "note": "11", "powered": "true"}}, {Id: 711, Properties: map[string]string{"instrument": "hat", "note": "11", "powered": "false"}}, {Id: 712, Properties: map[string]string{"instrument": "hat", "note": "12", "powered": "true"}}, {Id: 713, Properties: map[string]string{"instrument": "hat", "note": "12", "powered": "false"}}, {Id: 714, Properties: map[string]string{"instrument": "hat", "note": "13", "powered": "true"}}, {Id: 715, Properties: map[string]string{"instrument": "hat", "note": "13", "powered": "false"}}, {Id: 716, Properties: map[string]string{"instrument": "hat", "note": "14", "powered": "true"}}, {Id: 717, Properties: map[string]string{"instrument": "hat", "note": "14", "powered": "false"}}, {Id: 718, Properties: map[string]string{"instrument": "hat", "note": "15", "powered": "true"}}, {Id: 719, Properties: map[string]string{"instrument": "hat", "note": "15", "powered": "false"}}, {Id: 720, Properties: map[string]string{"instrument": "hat", "note": "16", "powered": "true"}}, {Id: 721, Properties: map[string]string{"instrument": "hat", "note": "16", "powered": "false"}}, {Id: 722, Properties: map[string]string{"instrument": "hat", "note": "17", "powered": "true"}}, {Id: 723, Properties: map[string]string{"instrument": "hat", "note": "17", "powered": "false"}}, {Id: 724, Properties: map[string]string{"instrument": "hat", "note": "18", "powered": "true"}}, {Id: 725, Properties: map[string]string{"instrument": "hat", "note": "18", "powered": "false"}}, {Id: 726, Properties: map[string]string{"instrument": "hat", "note": "19", "powered": "true"}}, {Id: 727, Properties: map[string]string{"instrument": "hat", "note": "19", "powered": "false"}}, {Id: 728, Properties: map[string]string{"instrument": "hat", "note": "20", "powered": "true"}}, {Id: 729, Properties: map[string]string{"instrument": "hat", "note": "20", "powered": "false"}}, {Id: 730, Properties: map[string]string{"instrument": "hat", "note": "21", "powered": "true"}}, {Id: 731, Properties: map[string]string{"instrument": "hat", "note": "21", "powered": "false"}}, {Id: 732, Properties: map[string]string{"instrument": "hat", "note": "22", "powered": "true"}}, {Id: 733, Properties: map[string]string{"instrument": "hat", "note": "22", "powered": "false"}}, {Id: 734, Properties: map[string]string{"instrument": "hat", "note": "23", "powered": "true"}}, {Id: 735, Properties: map[string]string{"instrument": "hat", "note": "23", "powered": "false"}}, {Id: 736, Properties: map[string]string{"instrument": "hat", "note": "24", "powered": "true"}}, {Id: 737, Properties: map[string]string{"instrument": "hat", "note": "24", "powered": "false"}}, {Id: 738, Properties: map[string]string{"instrument": "bass", "note": "0", "powered": "true"}}, {Id: 739, Properties: map[string]string{"instrument": "bass", "note": "0", "powered": "false"}}, {Id: 740, Properties: map[string]string{"instrument": "bass", "note": "1", "powered": "true"}}, {Id: 741, Properties: map[string]string{"instrument": "bass", "note": "1", "powered": "false"}}, {Id: 742, Properties: map[string]string{"instrument": "bass", "note": "2", "powered": "true"}}, {Id: 743, Properties: map[string]string{"instrument": "bass", "note": "2", "powered": "false"}}, {Id: 744, Properties: map[string]string{"instrument": "bass", "note": "3", "powered": "true"}}, {Id: 745, Properties: map[string]string{"instrument": "bass", "note": "3", "powered": "false"}}, {Id: 746, Properties: map[string]string{"instrument": "bass", "note": "4", "powered": "true"}}, {Id: 747, Properties: map[string]string{"instrument": "bass", "note": "4", "powered": "false"}}, {Id: 748, Properties: map[string]string{"instrument": "bass", "note": "5", "powered": "true"}}, {Id: 749, Properties: map[string]string{"instrument": "bass", "note": "5", "powered": "false"}}, {Id: 750, Properties: map[string]string{"instrument": "bass", "note": "6", "powered": "true"}}, {Id: 751, Properties: map[string]string{"instrument": "bass", "note": "6", "powered": "false"}}, {Id: 752, Properties: map[string]string{"instrument": "bass", "note": "7", "powered": "true"}}, {Id: 753, Properties: map[string]string{"instrument": "bass", "note": "7", "powered": "false"}}, {Id: 754, Properties: map[string]string{"instrument": "bass", "note": "8", "powered": "true"}}, {Id: 755, Properties: map[string]string{"instrument": "bass", "note": "8", "powered": "false"}}, {Id: 756, Properties: map[string]string{"instrument": "bass", "note": "9", "powered": "true"}}, {Id: 757, Properties: map[string]string{"instrument": "bass", "note": "9", "powered": "false"}}, {Id: 758, Properties: map[string]string{"instrument": "bass", "note": "10", "powered": "true"}}, {Id: 759, Properties: map[string]string{"instrument": "bass", "note": "10", "powered": "false"}}, {Id: 760, Properties: map[string]string{"instrument": "bass", "note": "11", "powered": "true"}}, {Id: 761, Properties: map[string]string{"instrument": "bass", "note": "11", "powered": "false"}}, {Id: 762, Properties: map[string]string{"instrument": "bass", "note": "12", "powered": "true"}}, {Id: 763, Properties: map[string]string{"instrument": "bass", "note": "12", "powered": "false"}}, {Id: 764, Properties: map[string]string{"instrument": "bass", "note": "13", "powered": "true"}}, {Id: 765, Properties: map[string]string{"instrument": "bass", "note": "13", "powered": "false"}}, {Id: 766, Properties: map[string]string{"instrument": "bass", "note": "14", "powered": "true"}}, {Id: 767, Properties: map[string]string{"instrument": "bass", "note": "14", "powered": "false"}}, {Id: 768, Properties: map[string]string{"instrument": "bass", "note": "15", "powered": "true"}}, {Id: 769, Properties: map[string]string{"instrument": "bass", "note": "15", "powered": "false"}}, {Id: 770, Properties: map[string]string{"instrument": "bass", "note": "16", "powered": "true"}}, {Id: 771, Properties: map[string]string{"instrument": "bass", "note": "16", "powered": "false"}}, {Id: 772, Properties: map[string]string{"instrument": "bass", "note": "17", "powered": "true"}}, {Id: 773, Properties: map[string]string{"instrument": "bass", "note": "17", "powered": "false"}}, {Id: 774, Properties: map[string]string{"instrument": "bass", "note": "18", "powered": "true"}}, {Id: 775, Properties: map[string]string{"instrument": "bass", "note": "18", "powered": "false"}}, {Id: 776, Properties: map[string]string{"instrument": "bass", "note": "19", "powered": "true"}}, {Id: 777, Properties: map[string]string{"instrument": "bass", "note": "19", "powered": "false"}}, {Id: 778, Properties: map[string]string{"instrument": "bass", "note": "20", "powered": "true"}}, {Id: 779, Properties: map[string]string{"instrument": "bass", "note": "20", "powered": "false"}}, {Id: 780, Properties: map[string]string{"instrument": "bass", "note": "21", "powered": "true"}}, {Id: 781, Properties: map[string]string{"instrument": "bass", "note": "21", "powered": "false"}}, {Id: 782, Properties: map[string]string{"instrument": "bass", "note": "22", "powered": "true"}}, {Id: 783, Properties: map[string]string{"instrument": "bass", "note": "22", "powered": "false"}}, {Id: 784, Properties: map[string]string{"instrument": "bass", "note": "23", "powered": "true"}}, {Id: 785, Properties: map[string]string{"instrument": "bass", "note": "23", "powered": "false"}}, {Id: 786, Properties: map[string]string{"instrument": "bass", "note": "24", "powered": "true"}}, {Id: 787, Properties: map[string]string{"instrument": "bass", "note": "24", "powered": "false"}}, {Id: 788, Properties: map[string]string{"instrument": "flute", "note": "0", "powered": "true"}}, {Id: 789, Properties: map[string]string{"instrument": "flute", "note": "0", "powered": "false"}}, {Id: 790, Properties: map[string]string{"instrument": "flute", "note": "1", "powered": "true"}}, {Id: 791, Properties: map[string]string{"instrument": "flute", "note": "1", "powered": "false"}}, {Id: 792, Properties: map[string]string{"instrument": "flute", "note": "2", "powered": "true"}}, {Id: 793, Properties: map[string]string{"instrument": "flute", "note": "2", "powered": "false"}}, {Id: 794, Properties: map[string]string{"instrument": "flute", "note": "3", "powered": "true"}}, {Id: 795, Properties: map[string]string{"instrument": "flute", "note": "3", "powered": "false"}}, {Id: 796, Properties: map[string]string{"instrument": "flute", "note": "4", "powered": "true"}}, {Id: 797, Properties: map[string]string{"instrument": "flute", "note": "4", "powered": "false"}}, {Id: 798, Properties: map[string]string{"instrument": "flute", "note": "5", "powered": "true"}}, {Id: 799, Properties: map[string]string{"instrument": "flute", "note": "5", "powered": "false"}}, {Id: 800, Properties: map[string]string{"instrument": "flute", "note": "6", "powered": "true"}}, {Id: 801, Properties: map[string]string{"instrument": "flute", "note": "6", "powered": "false"}}, {Id: 802, Properties: map[string]string{"instrument": "flute", "note": "7", "powered": "true"}}, {Id: 803, Properties: map[string]string{"instrument": "flute", "note": "7", "powered": "false"}}, {Id: 804, Properties: map[string]string{"instrument": "flute", "note": "8", "powered": "true"}}, {Id: 805, Properties: map[string]string{"instrument": "flute", "note": "8", "powered": "false"}}, {Id: 806, Properties: map[string]string{"instrument": "flute", "note": "9", "powered": "true"}}, {Id: 807, Properties: map[string]string{"instrument": "flute", "note": "9", "powered": "false"}}, {Id: 808, Properties: map[string]string{"instrument": "flute", "note": "10", "powered": "true"}}, {Id: 809, Properties: map[string]string{"instrument": "flute", "note": "10", "powered": "false"}}, {Id: 810, Properties: map[string]string{"instrument": "flute", "note": "11", "powered": "true"}}, {Id: 811, Properties: map[string]string{"instrument": "flute", "note": "11", "powered": "false"}}, {Id: 812, Properties: map[string]string{"instrument": "flute", "note": "12", "powered": "true"}}, {Id: 813, Properties: map[string]string{"instrument": "flute", "note": "12", "powered": "false"}}, {Id: 814, Properties: map[string]string{"instrument": "flute", "note": "13", "powered": "true"}}, {Id: 815, Properties: map[string]string{"instrument": "flute", "note": "13", "powered": "false"}}, {Id: 816, Properties: map[string]string{"instrument": "flute", "note": "14", "powered": "true"}}, {Id: 817, Properties: map[string]string{"instrument": "flute", "note": "14", "powered": "false"}}, {Id: 818, Properties: map[string]string{"instrument": "flute", "note": "15", "powered": "true"}}, {Id: 819, Properties: map[string]string{"instrument": "flute", "note": "15", "powered": "false"}}, {Id: 820, Properties: map[string]string{"instrument": "flute", "note": "16", "powered": "true"}}, {Id: 821, Properties: map[string]string{"instrument": "flute", "note": "16", "powered": "false"}}, {Id: 822, Properties: map[string]string{"instrument": "flute", "note": "17", "powered": "true"}}, {Id: 823, Properties: map[string]string{"instrument": "flute", "note": "17", "powered": "false"}}, {Id: 824, Properties: map[string]string{"instrument": "flute", "note": "18", "powered": "true"}}, {Id: 825, Properties: map[string]string{"instrument": "flute", "note": "18", "powered": "false"}}, {Id: 826, Properties: map[string]string{"instrument": "flute", "note": "19", "powered": "true"}}, {Id: 827, Properties: map[string]string{"instrument": "flute", "note": "19", "powered": "false"}}, {Id: 828, Properties: map[string]string{"instrument": "flute", "note": "20", "powered": "true"}}, {Id: 829, Properties: map[string]string{"instrument": "flute", "note": "20", "powered": "false"}}, {Id: 830, Properties: map[string]string{"instrument": "flute", "note": "21", "powered": "true"}}, {Id: 831, Properties: map[string]string{"instrument": "flute", "note": "21", "powered": "false"}}, {Id: 832, Properties: map[string]string{"instrument": "flute", "note": "22", "powered": "true"}}, {Id: 833, Properties: map[string]string{"instrument": "flute", "note": "22", "powered": "false"}}, {Id: 834, Properties: map[string]string{"instrument": "flute", "note": "23", "powered": "true"}}, {Id: 835, Properties: map[string]string{"instrument": "flute", "note": "23", "powered": "false"}}, {Id: 836, Properties: map[string]string{"instrument": "flute", "note": "24", "powered": "true"}}, {Id: 837, Properties: map[string]string{"instrument": "flute", "note": "24", "powered": "false"}}, {Id: 838, Properties: map[string]string{"instrument": "bell", "note": "0", "powered": "true"}}, {Id: 839, Properties: map[string]string{"instrument": "bell", "note": "0", "powered": "false"}}, {Id: 840, Properties: map[string]string{"instrument": "bell", "note": "1", "powered": "true"}}, {Id: 841, Properties: map[string]string{"instrument": "bell", "note": "1", "powered": "false"}}, {Id: 842, Properties: map[string]string{"instrument": "bell", "note": "2", "powered": "true"}}, {Id: 843, Properties: map[string]string{"instrument": "bell", "note": "2", "powered": "false"}}, {Id: 844, Properties: map[string]string{"instrument": "bell", "note": "3", "powered": "true"}}, {Id: 845, Properties: map[string]string{"instrument": "bell", "note": "3", "powered": "false"}}, {Id: 846, Properties: map[string]string{"instrument": "bell", "note": "4", "powered": "true"}}, {Id: 847, Properties: map[string]string{"instrument": "bell", "note": "4", "powered": "false"}}, {Id: 848, Properties: map[string]string{"instrument": "bell", "note": "5", "powered": "true"}}, {Id: 849, Properties: map[string]string{"instrument": "bell", "note": "5", "powered": "false"}}, {Id: 850, Properties: map[string]string{"instrument": "bell", "note": "6", "powered": "true"}}, {Id: 851, Properties: map[string]string{"instrument": "bell", "note": "6", "powered": "false"}}, {Id: 852, Properties: map[string]string{"instrument": "bell", "note": "7", "powered": "true"}}, {Id: 853, Properties: map[string]string{"instrument": "bell", "note": "7", "powered": "false"}}, {Id: 854, Properties: map[string]string{"instrument": "bell", "note": "8", "powered": "true"}}, {Id: 855, Properties: map[string]string{"instrument": "bell", "note": "8", "powered": "false"}}, {Id: 856, Properties: map[string]string{"instrument": "bell", "note": "9", "powered": "true"}}, {Id: 857, Properties: map[string]string{"instrument": "bell", "note": "9", "powered": "false"}}, {Id: 858, Properties: map[string]string{"instrument": "bell", "note": "10", "powered": "true"}}, {Id: 859, Properties: map[string]string{"instrument": "bell", "note": "10", "powered": "false"}}, {Id: 860, Properties: map[string]string{"instrument": "bell", "note": "11", "powered": "true"}}, {Id: 861, Properties: map[string]string{"instrument": "bell", "note": "11", "powered": "false"}}, {Id: 862, Properties: map[string]string{"instrument": "bell", "note": "12", "powered": "true"}}, {Id: 863, Properties: map[string]string{"instrument": "bell", "note": "12", "powered": "false"}}, {Id: 864, Properties: map[string]string{"instrument": "bell", "note": "13", "powered": "true"}}, {Id: 865, Properties: map[string]string{"instrument": "bell", "note": "13", "powered": "false"}}, {Id: 866, Properties: map[string]string{"instrument": "bell", "note": "14", "powered": "true"}}, {Id: 867, Properties: map[string]string{"instrument": "bell", "note": "14", "powered": "false"}}, {Id: 868, Properties: map[string]string{"instrument": "bell", "note": "15", "powered": "true"}}, {Id: 869, Properties: map[string]string{"instrument": "bell", "note": "15", "powered": "false"}}, {Id: 870, Properties: map[string]string{"instrument": "bell", "note": "16", "powered": "true"}}, {Id: 871, Properties: map[string]string{"instrument": "bell", "note": "16", "powered": "false"}}, {Id: 872, Properties: map[string]string{"instrument": "bell", "note": "17", "powered": "true"}}, {Id: 873, Properties: map[string]string{"instrument": "bell", "note": "17", "powered": "false"}}, {Id: 874, Properties: map[string]string{"instrument": "bell", "note": "18", "powered": "true"}}, {Id: 875, Properties: map[string]string{"instrument": "bell", "note": "18", "powered": "false"}}, {Id: 876, Properties: map[string]string{"instrument": "bell", "note": "19", "powered": "true"}}, {Id: 877, Properties: map[string]string{"instrument": "bell", "note": "19", "powered": "false"}}, {Id: 878, Properties: map[string]string{"instrument": "bell", "note": "20", "powered": "true"}}, {Id: 879, Properties: map[string]string{"instrument": "bell", "note": "20", "powered": "false"}}, {Id: 880, Properties: map[string]string{"instrument": "bell", "note": "21", "powered": "true"}}, {Id: 881, Properties: map[string]string{"instrument": "bell", "note": "21", "powered": "false"}}, {Id: 882, Properties: map[string]string{"instrument": "bell", "note": "22", "powered": "true"}}, {Id: 883, Properties: map[string]string{"instrument": "bell", "note": "22", "powered": "false"}}, {Id: 884, Properties: map[string]string{"instrument": "bell", "note": "23", "powered": "true"}}, {Id: 885, Properties: map[string]string{"instrument": "bell", "note": "23", "powered": "false"}}, {Id: 886, Properties: map[string]string{"instrument": "bell", "note": "24", "powered": "true"}}, {Id: 887, Properties: map[string]string{"instrument": "bell", "note": "24", "powered": "false"}}, {Id: 888, Properties: map[string]string{"instrument": "guitar", "note": "0", "powered": "true"}}, {Id: 889, Properties: map[string]string{"instrument": "guitar", "note": "0", "powered": "false"}}, {Id: 890, Properties: map[string]string{"instrument": "guitar", "note": "1", "powered": "true"}}, {Id: 891, Properties: map[string]string{"instrument": "guitar", "note": "1", "powered": "false"}}, {Id: 892, Properties: map[string]string{"instrument": "guitar", "note": "2", "powered": "true"}}, {Id: 893, Properties: map[string]string{"instrument": "guitar", "note": "2", "powered": "false"}}, {Id: 894, Properties: map[string]string{"instrument": "guitar", "note": "3", "powered": "true"}}, {Id: 895, Properties: map[string]string{"instrument": "guitar", "note": "3", "powered": "false"}}, {Id: 896, Properties: map[string]string{"instrument": "guitar", "note": "4", "powered": "true"}}, {Id: 897, Properties: map[string]string{"instrument": "guitar", "note": "4", "powered": "false"}}, {Id: 898, Properties: map[string]string{"instrument": "guitar", "note": "5", "powered": "true"}}, {Id: 899, Properties: map[string]string{"instrument": "guitar", "note": "5", "powered": "false"}}, {Id: 900, Properties: map[string]string{"instrument": "guitar", "note": "6", "powered": "true"}}, {Id: 901, Properties: map[string]string{"instrument": "guitar", "note": "6", "powered": "false"}}, {Id: 902, Properties: map[string]string{"instrument": "guitar", "note": "7", "powered": "true"}}, {Id: 903, Properties: map[string]string{"instrument": "guitar", "note": "7", "powered": "false"}}, {Id: 904, Properties: map[string]string{"instrument": "guitar", "note": "8", "powered": "true"}}, {Id: 905, Properties: map[string]string{"instrument": "guitar", "note": "8", "powered": "false"}}, {Id: 906, Properties: map[string]string{"instrument": "guitar", "note": "9", "powered": "true"}}, {Id: 907, Properties: map[string]string{"instrument": "guitar", "note": "9", "powered": "false"}}, {Id: 908, Properties: map[string]string{"instrument": "guitar", "note": "10", "powered": "true"}}, {Id: 909, Properties: map[string]string{"instrument": "guitar", "note": "10", "powered": "false"}}, {Id: 910, Properties: map[string]string{"instrument": "guitar", "note": "11", "powered": "true"}}, {Id: 911, Properties: map[string]string{"instrument": "guitar", "note": "11", "powered": "false"}}, {Id: 912, Properties: map[string]string{"instrument": "guitar", "note": "12", "powered": "true"}}, {Id: 913, Properties: map[string]string{"instrument": "guitar", "note": "12", "powered": "false"}}, {Id: 914, Properties: map[string]string{"instrument": "guitar", "note": "13", "powered": "true"}}, {Id: 915, Properties: map[string]string{"instrument": "guitar", "note": "13", "powered": "false"}}, {Id: 916, Properties: map[string]string{"instrument": "guitar", "note": "14", "powered": "true"}}, {Id: 917, Properties: map[string]string{"instrument": "guitar", "note": "14", "powered": "false"}}, {Id: 918, Properties: map[string]string{"instrument": "guitar", "note": "15", "powered": "true"}}, {Id: 919, Properties: map[string]string{"instrument": "guitar", "note": "15", "powered": "false"}}, {Id: 920, Properties: map[string]string{"instrument": "guitar", "note": "16", "powered": "true"}}, {Id: 921, Properties: map[string]string{"instrument": "guitar", "note": "16", "powered": "false"}}, {Id: 922, Properties: map[string]string{"instrument": "guitar", "note": "17", "powered": "true"}}, {Id: 923, Properties: map[string]string{"instrument": "guitar", "note": "17", "powered": "false"}}, {Id: 924, Properties: map[string]string{"instrument": "guitar", "note": "18", "powered": "true"}}, {Id: 925, Properties: map[string]string{"instrument": "guitar", "note": "18", "powered": "false"}}, {Id: 926, Properties: map[string]string{"instrument": "guitar", "note": "19", "powered": "true"}}, {Id: 927, Properties: map[string]string{"instrument": "guitar", "note": "19", "powered": "false"}}, {Id: 928, Properties: map[string]string{"instrument": "guitar", "note": "20", "powered": "true"}}, {Id: 929, Properties: map[string]string{"instrument": "guitar", "note": "20", "powered": "false"}}, {Id: 930, Properties: map[string]string{"instrument": "guitar", "note": "21", "powered": "true"}}, {Id: 931, Properties: map[string]string{"instrument": "guitar", "note": "21", "powered": "false"}}, {Id: 932, Properties: map[string]string{"instrument": "guitar", "note": "22", "powered": "true"}}, {Id: 933, Properties: map[string]string{"instrument": "guitar", "note": "22", "powered": "false"}}, {Id: 934, Properties: map[string]string{"instrument": "guitar", "note": "23", "powered": "true"}}, {Id: 935, Properties: map[string]string{"instrument": "guitar", "note": "23", "powered": "false"}}, {Id: 936, Properties: map[string]string{"instrument": "guitar", "note": "24", "powered": "true"}}, {Id: 937, Properties: map[string]string{"instrument": "guitar", "note": "24", "powered": "false"}}, {Id: 938, Properties: map[string]string{"instrument": "chime", "note": "0", "powered": "true"}}, {Id: 939, Properties: map[string]string{"instrument": "chime", "note": "0", "powered": "false"}}, {Id: 940, Properties: map[string]string{"instrument": "chime", "note": "1", "powered": "true"}}, {Id: 941, Properties: map[string]string{"instrument": "chime", "note": "1", "powered": "false"}}, {Id: 942, Properties: map[string]string{"instrument": "chime", "note": "2", "powered": "true"}}, {Id: 943, Properties: map[string]string{"instrument": "chime", "note": "2", "powered": "false"}}, {Id: 944, Properties: map[string]string{"instrument": "chime", "note": "3", "powered": "true"}}, {Id: 945, Properties: map[string]string{"instrument": "chime", "note": "3", "powered": "false"}}, {Id: 946, Properties: map[string]string{"instrument": "chime", "note": "4", "powered": "true"}}, {Id: 947, Properties: map[string]string{"instrument": "chime", "note": "4", "powered": "false"}}, {Id: 948, Properties: map[string]string{"instrument": "chime", "note": "5", "powered": "true"}}, {Id: 949, Properties: map[string]string{"instrument": "chime", "note": "5", "powered": "false"}}, {Id: 950, Properties: map[string]string{"instrument": "chime", "note": "6", "powered": "true"}}, {Id: 951, Properties: map[string]string{"instrument": "chime", "note": "6", "powered": "false"}}, {Id: 952, Properties: map[string]string{"instrument": "chime", "note": "7", "powered": "true"}}, {Id: 953, Properties: map[string]string{"instrument": "chime", "note": "7", "powered": "false"}}, {Id: 954, Properties: map[string]string{"instrument": "chime", "note": "8", "powered": "true"}}, {Id: 955, Properties: map[string]string{"instrument": "chime", "note": "8", "powered": "false"}}, {Id: 956, Properties: map[string]string{"instrument": "chime", "note": "9", "powered": "true"}}, {Id: 957, Properties: map[string]string{"instrument": "chime", "note": "9", "powered": "false"}}, {Id: 958, Properties: map[string]string{"instrument": "chime", "note": "10", "powered": "true"}}, {Id: 959, Properties: map[string]string{"instrument": "chime", "note": "10", "powered": "false"}}, {Id: 960, Properties: map[string]string{"instrument": "chime", "note": "11", "powered": "true"}}, {Id: 961, Properties: map[string]string{"instrument": "chime", "note": "11", "powered": "false"}}, {Id: 962, Properties: map[string]string{"instrument": "chime", "note": "12", "powered": "true"}}, {Id: 963, Properties: map[string]string{"instrument": "chime", "note": "12", "powered": "false"}}, {Id: 964, Properties: map[string]string{"instrument": "chime", "note": "13", "powered": "true"}}, {Id: 965, Properties: map[string]string{"instrument": "chime", "note": "13", "powered": "false"}}, {Id: 966, Properties: map[string]string{"instrument": "chime", "note": "14", "powered": "true"}}, {Id: 967, Properties: map[string]string{"instrument": "chime", "note": "14", "powered": "false"}}, {Id: 968, Properties: map[string]string{"instrument": "chime", "note": "15", "powered": "true"}}, {Id: 969, Properties: map[string]string{"instrument": "chime", "note": "15", "powered": "false"}}, {Id: 970, Properties: map[string]string{"instrument": "chime", "note": "16", "powered": "true"}}, {Id: 971, Properties: map[string]string{"instrument": "chime", "note": "16", "powered": "false"}}, {Id: 972, Properties: map[string]string{"instrument": "chime", "note": "17", "powered": "true"}}, {Id: 973, Properties: map[string]string{"instrument": "chime", "note": "17", "powered": "false"}}, {Id: 974, Properties: map[string]string{"instrument": "chime", "note": "18", "powered": "true"}}, {Id: 975, Properties: map[string]string{"instrument": "chime", "note": "18", "powered": "false"}}, {Id: 976, Properties: map[string]string{"instrument": "chime", "note": "19", "powered": "true"}}, {Id: 977, Properties: map[string]string{"instrument": "chime", "note": "19", "powered": "false"}}, {Id: 978, Properties: map[string]string{"instrument": "chime", "note": "20", "powered": "true"}}, {Id: 979, Properties: map[string]string{"instrument": "chime", "note": "20", "powered": "false"}}, {Id: 980, Properties: map[string]string{"instrument": "chime", "note": "21", "powered": "true"}}, {Id: 981, Properties: map[string]string{"instrument": "chime", "note": "21", "powered": "false"}}, {Id: 982, Properties: map[string]string{"instrument": "chime", "note": "22", "powered": "true"}}, {Id: 983, Properties: map[string]string{"instrument": "chime", "note": "22", "powered": "false"}}, {Id: 984, Properties: map[string]string{"instrument": "chime", "note": "23", "powered": "true"}}, {Id: 985, Properties: map[string]string{"instrument": "chime", "note": "23", "powered": "false"}}, {Id: 986, Properties: map[string]string{"instrument": "chime", "note": "24", "powered": "true"}}, {Id: 987, Properties: map[string]string{"instrument": "chime", "note": "24", "powered": "false"}}, {Id: 988, Properties: map[string]string{"instrument": "xylophone", "note": "0", "powered": "true"}}, {Id: 989, Properties: map[string]string{"instrument": "xylophone", "note": "0", "powered": "false"}}, {Id: 990, Properties: map[string]string{"instrument": "xylophone", "note": "1", "powered": "true"}}, {Id: 991, Properties: map[string]string{"instrument": "xylophone", "note": "1", "powered": "false"}}, {Id: 992, Properties: map[string]string{"instrument": "xylophone", "note": "2", "powered": "true"}}, {Id: 993, Properties: map[string]string{"instrument": "xylophone", "note": "2", "powered": "false"}}, {Id: 994, Properties: map[string]string{"instrument": "xylophone", "note": "3", "powered": "true"}}, {Id: 995, Properties: map[string]string{"instrument": "xylophone", "note": "3", "powered": "false"}}, {Id: 996, Properties: map[string]string{"instrument": "xylophone", "note": "4", "powered": "true"}}, {Id: 997, Properties: map[string]string{"instrument": "xylophone", "note": "4", "powered": "false"}}, {Id: 998, Properties: map[string]string{"instrument": "xylophone", "note": "5", "powered": "true"}}, {Id: 999, Properties: map[string]string{"instrument": "xylophone", "note": "5", "powered": "false"}}, {Id: 1000, Properties: map[string]string{"instrument": "xylophone", "note": "6", "powered": "true"}}, {Id: 1001, Properties: map[string]string{"instrument": "xylophone", "note": "6", "powered": "false"}}, {Id: 1002, Properties: map[string]string{"instrument": "xylophone", "note": "7", "powered": "true"}}, {Id: 1003, Properties: map[string]string{"instrument": "xylophone", "note": "7", "powered": "false"}}, {Id: 1004, Properties: map[string]string{"instrument": "xylophone", "note": "8", "powered": "true"}}, {Id: 1005, Properties: map[string]string{"instrument": "xylophone", "note": "8", "powered": "false"}}, {Id: 1006, Properties: map[string]string{"instrument": "xylophone", "note": "9", "powered": "true"}}, {Id: 1007, Properties: map[string]string{"instrument": "xylophone", "note": "9", "powered": "false"}}, {Id: 1008, Properties: map[string]string{"instrument": "xylophone", "note": "10", "powered": "true"}}, {Id: 1009, Properties: map[string]string{"instrument": "xylophone", "note": "10", "powered": "false"}}, {Id: 1010, Properties: map[string]string{"instrument": "xylophone", "note": "11", "powered": "true"}}, {Id: 1011, Properties: map[string]string{"instrument": "xylophone", "note": "11", "powered": "false"}}, {Id: 1012, Properties: map[string]string{"instrument": "xylophone", "note": "12", "powered": "true"}}, {Id: 1013, Properties: map[string]string{"instrument": "xylophone", "note": "12", "powered": "false"}}, {Id: 1014, Properties: map[string]string{"instrument": "xylophone", "note": "13", "powered": "true"}}, {Id: 1015, Properties: map[string]string{"instrument": "xylophone", "note": "13", "powered": "false"}}, {Id: 1016, Properties: map[string]string{"instrument": "xylophone", "note": "14", "powered": "true"}}, {Id: 1017, Properties: map[string]string{"instrument": "xylophone", "note": "14", "powered": "false"}}, {Id: 1018, Properties: map[string]string{"instrument": "xylophone", "note": "15", "powered": "true"}}, {Id: 1019, Properties: map[string]string{"instrument": "xylophone", "note": "15", "powered": "false"}}, {Id: 1020, Properties: map[string]string{"instrument": "xylophone", "note": "16", "powered": "true"}}, {Id: 1021, Properties: map[string]string{"instrument": "xylophone", "note": "16", "powered": "false"}}, {Id: 1022, Properties: map[string]string{"instrument": "xylophone", "note": "17", "powered": "true"}}, {Id: 1023, Properties: map[string]string{"instrument": "xylophone", "note": "17", "powered": "false"}}, {Id: 1024, Properties: map[string]string{"instrument": "xylophone", "note": "18", "powered": "true"}}, {Id: 1025, Properties: map[string]string{"instrument": "xylophone", "note": "18", "powered": "false"}}, {Id: 1026, Properties: map[string]string{"instrument": "xylophone", "note": "19", "powered": "true"}}, {Id: 1027, Properties: map[string]string{"instrument": "xylophone", "note": "19", "powered": "false"}}, {Id: 1028, Properties: map[string]string{"instrument": "xylophone", "note": "20", "powered": "true"}}, {Id: 1029, Properties: map[string]string{"instrument": "xylophone", "note": "20", "powered": "false"}}, {Id: 1030, Properties: map[string]string{"instrument": "xylophone", "note": "21", "powered": "true"}}, {Id: 1031, Properties: map[string]string{"instrument": "xylophone", "note": "21", "powered": "false"}}, {Id: 1032, Properties: map[string]string{"instrument": "xylophone", "note": "22", "powered": "true"}}, {Id: 1033, Properties: map[string]string{"instrument": "xylophone", "note": "22", "powered": "false"}}, {Id: 1034, Properties: map[string]string{"instrument": "xylophone", "note": "23", "powered": "true"}}, {Id: 1035, Properties: map[string]string{"instrument": "xylophone", "note": "23", "powered": "false"}}, {Id: 1036, Properties: map[string]string{"instrument": "xylophone", "note": "24", "powered": "true"}}, {Id: 1037, Properties: map[string]string{"instrument": "xylophone", "note": "24", "powered": "false"}}, {Id: 1038, Properties: map[string]string{"instrument": "iron_xylophone", "note": "0", "powered": "true"}}, {Id: 1039, Properties: map[string]string{"instrument": "iron_xylophone", "note": "0", "powered": "false"}}, {Id: 1040, Properties: map[string]string{"instrument": "iron_xylophone", "note": "1", "powered": "true"}}, {Id: 1041, Properties: map[string]string{"instrument": "iron_xylophone", "note": "1", "powered": "false"}}, {Id: 1042, Properties: map[string]string{"instrument": "iron_xylophone", "note": "2", "powered": "true"}}, {Id: 1043, Properties: map[string]string{"instrument": "iron_xylophone", "note": "2", "powered": "false"}}, {Id: 1044, Properties: map[string]string{"instrument": "iron_xylophone", "note": "3", "powered": "true"}}, {Id: 1045, Properties: map[string]string{"instrument": "iron_xylophone", "note": "3", "powered": "false"}}, {Id: 1046, Properties: map[string]string{"instrument": "iron_xylophone", "note": "4", "powered": "true"}}, {Id: 1047, Properties: map[string]string{"instrument": "iron_xylophone", "note": "4", "powered": "false"}}, {Id: 1048, Properties: map[string]string{"instrument": "iron_xylophone", "note": "5", "powered": "true"}}, {Id: 1049, Properties: map[string]string{"instrument": "iron_xylophone", "note": "5", "powered": "false"}}, {Id: 1050, Properties: map[string]string{"instrument": "iron_xylophone", "note": "6", "powered": "true"}}, {Id: 1051, Properties: map[string]string{"instrument": "iron_xylophone", "note": "6", "powered": "false"}}, {Id: 1052, Properties: map[string]string{"instrument": "iron_xylophone", "note": "7", "powered": "true"}}, {Id: 1053, Properties: map[string]string{"instrument": "iron_xylophone", "note": "7", "powered": "false"}}, {Id: 1054, Properties: map[string]string{"instrument": "iron_xylophone", "note": "8", "powered": "true"}}, {Id: 1055, Properties: map[string]string{"instrument": "iron_xylophone", "note": "8", "powered": "false"}}, {Id: 1056, Properties: map[string]string{"instrument": "iron_xylophone", "note": "9", "powered": "true"}}, {Id: 1057, Properties: map[string]string{"instrument": "iron_xylophone", "note": "9", "powered": "false"}}, {Id: 1058, Properties: map[string]string{"instrument": "iron_xylophone", "note": "10", "powered": "true"}}, {Id: 1059, Properties: map[string]string{"instrument": "iron_xylophone", "note": "10", "powered": "false"}}, {Id: 1060, Properties: map[string]string{"instrument": "iron_xylophone", "note": "11", "powered": "true"}}, {Id: 1061, Properties: map[string]string{"instrument": "iron_xylophone", "note": "11", "powered": "false"}}, {Id: 1062, Properties: map[string]string{"instrument": "iron_xylophone", "note": "12", "powered": "true"}}, {Id: 1063, Properties: map[string]string{"instrument": "iron_xylophone", "note": "12", "powered": "false"}}, {Id: 1064, Properties: map[string]string{"instrument": "iron_xylophone", "note": "13", "powered": "true"}}, {Id: 1065, Properties: map[string]string{"instrument": "iron_xylophone", "note": "13", "powered": "false"}}, {Id: 1066, Properties: map[string]string{"instrument": "iron_xylophone", "note": "14", "powered": "true"}}, {Id: 1067, Properties: map[string]string{"instrument": "iron_xylophone", "note": "14", "powered": "false"}}, {Id: 1068, Properties: map[string]string{"instrument": "iron_xylophone", "note": "15", "powered": "true"}}, {Id: 1069, Properties: map[string]string{"instrument": "iron_xylophone", "note": "15", "powered": "false"}}, {Id: 1070, Properties: map[string]string{"instrument": "iron_xylophone", "note": "16", "powered": "true"}}, {Id: 1071, Properties: map[string]string{"instrument": "iron_xylophone", "note": "16", "powered": "false"}}, {Id: 1072, Properties: map[string]string{"instrument": "iron_xylophone", "note": "17", "powered": "true"}}, {Id: 1073, Properties: map[string]string{"instrument": "iron_xylophone", "note": "17", "powered": "false"}}, {Id: 1074, Properties: map[string]string{"instrument": "iron_xylophone", "note": "18", "powered": "true"}}, {Id: 1075, Properties: map[string]string{"instrument": "iron_xylophone", "note": "18", "powered": "false"}}, {Id: 1076, Properties: map[string]string{"instrument": "iron_xylophone", "note": "19", "powered": "true"}}, {Id: 1077, Properties: map[string]string{"instrument": "iron_xylophone", "note": "19", "powered": "false"}}, {Id: 1078, Properties: map[string]string{"instrument": "iron_xylophone", "note": "20", "powered": "true"}}, {Id: 1079, Properties: map[string]string{"instrument": "iron_xylophone", "note": "20", "powered": "false"}}, {Id: 1080, Properties: map[string]string{"instrument": "iron_xylophone", "note": "21", "powered": "true"}}, {Id: 1081, Properties: map[string]string{"instrument": "iron_xylophone", "note": "21", "powered": "false"}}, {Id: 1082, Properties: map[string]string{"instrument": "iron_xylophone", "note": "22", "powered": "true"}}, {Id: 1083, Properties: map[string]string{"instrument": "iron_xylophone", "note": "22", "powered": "false"}}, {Id: 1084, Properties: map[string]string{"instrument": "iron_xylophone", "note": "23", "powered": "true"}}, {Id: 1085, Properties: map[string]string{"instrument": "iron_xylophone", "note": "23", "powered": "false"}}, {Id: 1086, Properties: map[string]string{"instrument": "iron_xylophone", "note": "24", "powered": "true"}}, {Id: 1087, Properties: map[string]string{"instrument": "iron_xylophone", "note": "24", "powered": "false"}}, {Id: 1088, Properties: map[string]string{"instrument": "cow_bell", "note": "0", "powered": "true"}}, {Id: 1089, Properties: map[string]string{"instrument": "cow_bell", "note": "0", "powered": "false"}}, {Id: 1090, Properties: map[string]string{"instrument": "cow_bell", "note": "1", "powered": "true"}}, {Id: 1091, Properties: map[string]string{"instrument": "cow_bell", "note": "1", "powered": "false"}}, {Id: 1092, Properties: map[string]string{"instrument": "cow_bell", "note": "2", "powered": "true"}}, {Id: 1093, Properties: map[string]string{"instrument": "cow_bell", "note": "2", "powered": "false"}}, {Id: 1094, Properties: map[string]string{"instrument": "cow_bell", "note": "3", "powered": "true"}}, {Id: 1095, Properties: map[string]string{"instrument": "cow_bell", "note": "3", "powered": "false"}}, {Id: 1096, Properties: map[string]string{"instrument": "cow_bell", "note": "4", "powered": "true"}}, {Id: 1097, Properties: map[string]string{"instrument": "cow_bell", "note": "4", "powered": "false"}}, {Id: 1098, Properties: map[string]string{"instrument": "cow_bell", "note": "5", "powered": "true"}}, {Id: 1099, Properties: map[string]string{"instrument": "cow_bell", "note": "5", "powered": "false"}}, {Id: 1100, Properties: map[string]string{"instrument": "cow_bell", "note": "6", "powered": "true"}}, {Id: 1101, Properties: map[string]string{"instrument": "cow_bell", "note": "6", "powered": "false"}}, {Id: 1102, Properties: map[string]string{"instrument": "cow_bell", "note": "7", "powered": "true"}}, {Id: 1103, Properties: map[string]string{"instrument": "cow_bell", "note": "7", "powered": "false"}}, {Id: 1104, Properties: map[string]string{"instrument": "cow_bell", "note": "8", "powered": "true"}}, {Id: 1105, Properties: map[string]string{"instrument": "cow_bell", "note": "8", "powered": "false"}}, {Id: 1106, Properties: map[string]string{"instrument": "cow_bell", "note": "9", "powered": "true"}}, {Id: 1107, Properties: map[string]string{"instrument": "cow_bell", "note": "9", "powered": "false"}}, {Id: 1108, Properties: map[string]string{"instrument": "cow_bell", "note": "10", "powered": "true"}}, {Id: 1109, Properties: map[string]string{"instrument": "cow_bell", "note": "10", "powered": "false"}}, {Id: 1110, Properties: map[string]string{"instrument": "cow_bell", "note": "11", "powered": "true"}}, {Id: 1111, Properties: map[string]string{"instrument": "cow_bell", "note": "11", "powered": "false"}}, {Id: 1112, Properties: map[string]string{"instrument": "cow_bell", "note": "12", "powered": "true"}}, {Id: 1113, Properties: map[string]string{"instrument": "cow_bell", "note": "12", "powered": "false"}}, {Id: 1114, Properties: map[string]string{"instrument": "cow_bell", "note": "13", "powered": "true"}}, {Id: 1115, Properties: map[string]string{"instrument": "cow_bell", "note": "13", "powered": "false"}}, {Id: 1116, Properties: map[string]string{"instrument": "cow_bell", "note": "14", "powered": "true"}}, {Id: 1117, Properties: map[string]string{"instrument": "cow_bell", "note": "14", "powered": "false"}}, {Id: 1118, Properties: map[string]string{"instrument": "cow_bell", "note": "15", "powered": "true"}}, {Id: 1119, Properties: map[string]string{"instrument": "cow_bell", "note": "15", "powered": "false"}}, {Id: 1120, Properties: map[string]string{"instrument": "cow_bell", "note": "16", "powered": "true"}}, {Id: 1121, Properties: map[string]string{"instrument": "cow_bell", "note": "16", "powered": "false"}}, {Id: 1122, Properties: map[string]string{"instrument": "cow_bell", "note": "17", "powered": "true"}}, {Id: 1123, Properties: map[string]string{"instrument": "cow_bell", "note": "17", "powered": "false"}}, {Id: 1124, Properties: map[string]string{"instrument": "cow_bell", "note": "18", "powered": "true"}}, {Id: 1125, Properties: map[string]string{"instrument": "cow_bell", "note": "18", "powered": "false"}}, {Id: 1126, Properties: map[string]string{"instrument": "cow_bell", "note": "19", "powered": "true"}}, {Id: 1127, Properties: map[string]string{"instrument": "cow_bell", "note": "19", "powered": "false"}}, {Id: 1128, Properties: map[string]string{"instrument": "cow_bell", "note": "20", "powered": "true"}}, {Id: 1129, Properties: map[string]string{"instrument": "cow_bell", "note": "20", "powered": "false"}}, {Id: 1130, Properties: map[string]string{"instrument": "cow_bell", "note": "21", "powered": "true"}}, {Id: 1131, Properties: map[string]string{"instrument": "cow_bell", "note": "21", "powered": "false"}}, {Id: 1132, Properties: map[string]string{"instrument": "cow_bell", "note": "22", "powered": "true"}}, {Id: 1133, Properties: map[string]string{"instrument": "cow_bell", "note": "22", "powered": "false"}}, {Id: 1134, Properties: map[string]string{"instrument": "cow_bell", "note": "23", "powered": "true"}}, {Id: 1135, Properties: map[string]string{"instrument": "cow_bell", "note": "23", "powered": "false"}}, {Id: 1136, Properties: map[string]string{"instrument": "cow_bell", "note": "24", "powered": "true"}}, {Id: 1137, Properties: map[string]string{"instrument": "cow_bell", "note": "24", "powered": "false"}}, {Id: 1138, Properties: map[string]string{"instrument": "didgeridoo", "note": "0", "powered": "true"}}, {Id: 1139, Properties: map[string]string{"instrument": "didgeridoo", "note": "0", "powered": "false"}}, {Id: 1140, Properties: map[string]string{"instrument": "didgeridoo", "note": "1", "powered": "true"}}, {Id: 1141, Properties: map[string]string{"instrument": "didgeridoo", "note": "1", "powered": "false"}}, {Id: 1142, Properties: map[string]string{"instrument": "didgeridoo", "note": "2", "powered": "true"}}, {Id: 1143, Properties: map[string]string{"instrument": "didgeridoo", "note": "2", "powered": "false"}}, {Id: 1144, Properties: map[string]string{"instrument": "didgeridoo", "note": "3", "powered": "true"}}, {Id: 1145, Properties: map[string]string{"instrument": "didgeridoo", "note": "3", "powered": "false"}}, {Id: 1146, Properties: map[string]string{"instrument": "didgeridoo", "note": "4", "powered": "true"}}, {Id: 1147, Properties: map[string]string{"instrument": "didgeridoo", "note": "4", "powered": "false"}}, {Id: 1148, Properties: map[string]string{"instrument": "didgeridoo", "note": "5", "powered": "true"}}, {Id: 1149, Properties: map[string]string{"instrument": "didgeridoo", "note": "5", "powered": "false"}}, {Id: 1150, Properties: map[string]string{"instrument": "didgeridoo", "note": "6", "powered": "true"}}, {Id: 1151, Properties: map[string]string{"instrument": "didgeridoo", "note": "6", "powered": "false"}}, {Id: 1152, Properties: map[string]string{"instrument": "didgeridoo", "note": "7", "powered": "true"}}, {Id: 1153, Properties: map[string]string{"instrument": "didgeridoo", "note": "7", "powered": "false"}}, {Id: 1154, Properties: map[string]string{"instrument": "didgeridoo", "note": "8", "powered": "true"}}, {Id: 1155, Properties: map[string]string{"instrument": "didgeridoo", "note": "8", "powered": "false"}}, {Id: 1156, Properties: map[string]string{"instrument": "didgeridoo", "note": "9", "powered": "true"}}, {Id: 1157, Properties: map[string]string{"instrument": "didgeridoo", "note": "9", "powered": "false"}}, {Id: 1158, Properties: map[string]string{"instrument": "didgeridoo", "note": "10", "powered": "true"}}, {Id: 1159, Properties: map[string]string{"instrument": "didgeridoo", "note": "10", "powered": "false"}}, {Id: 1160, Properties: map[string]string{"instrument": "didgeridoo", "note": "11", "powered": "true"}}, {Id: 1161, Properties: map[string]string{"instrument": "didgeridoo", "note": "11", "powered": "false"}}, {Id: 1162, Properties: map[string]string{"instrument": "didgeridoo", "note": "12", "powered": "true"}}, {Id: 1163, Properties: map[string]string{"instrument": "didgeridoo", "note": "12", "powered": "false"}}, {Id: 1164, Properties: map[string]string{"instrument": "didgeridoo", "note": "13", "powered": "true"}}, {Id: 1165, Properties: map[string]string{"instrument": "didgeridoo", "note": "13", "powered": "false"}}, {Id: 1166, Properties: map[string]string{"instrument": "didgeridoo", "note": "14", "powered": "true"}}, {Id: 1167, Properties: map[string]string{"instrument": "didgeridoo", "note": "14", "powered": "false"}}, {Id: 1168, Properties: map[string]string{"instrument": "didgeridoo", "note": "15", "powered": "true"}}, {Id: 1169, Properties: map[string]string{"instrument": "didgeridoo", "note": "15", "powered": "false"}}, {Id: 1170, Properties: map[string]string{"instrument": "didgeridoo", "note": "16", "powered": "true"}}, {Id: 1171, Properties: map[string]string{"instrument": "didgeridoo", "note": "16", "powered": "false"}}, {Id: 1172, Properties: map[string]string{"instrument": "didgeridoo", "note": "17", "powered": "true"}}, {Id: 1173, Properties: map[string]string{"instrument": "didgeridoo", "note": "17", "powered": "false"}}, {Id: 1174, Properties: map[string]string{"instrument": "didgeridoo", "note": "18", "powered": "true"}}, {Id: 1175, Properties: map[string]string{"instrument": "didgeridoo", "note": "18", "powered": "false"}}, {Id: 1176, Properties: map[string]string{"instrument": "didgeridoo", "note": "19", "powered": "true"}}, {Id: 1177, Properties: map[string]string{"instrument": "didgeridoo", "note": "19", "powered": "false"}}, {Id: 1178, Properties: map[string]string{"instrument": "didgeridoo", "note": "20", "powered": "true"}}, {Id: 1179, Properties: map[string]string{"instrument": "didgeridoo", "note": "20", "powered": "false"}}, {Id: 1180, Properties: map[string]string{"instrument": "didgeridoo", "note": "21", "powered": "true"}}, {Id: 1181, Properties: map[string]string{"instrument": "didgeridoo", "note": "21", "powered": "false"}}, {Id: 1182, Properties: map[string]string{"instrument": "didgeridoo", "note": "22", "powered": "true"}}, {Id: 1183, Properties: map[string]string{"instrument": "didgeridoo", "note": "22", "powered": "false"}}, {Id: 1184, Properties: map[string]string{"instrument": "didgeridoo", "note": "23", "powered": "true"}}, {Id: 1185, Properties: map[string]string{"instrument": "didgeridoo", "note": "23", "powered": "false"}}, {Id: 1186, Properties: map[string]string{"instrument": "didgeridoo", "note": "24", "powered": "true"}}, {Id: 1187, Properties: map[string]string{"instrument": "didgeridoo", "note": "24", "powered": "false"}}, {Id: 1188, Properties: map[string]string{"instrument": "bit", "note": "0", "powered": "true"}}, {Id: 1189, Properties: map[string]string{"instrument": "bit", "note": "0", "powered": "false"}}, {Id: 1190, Properties: map[string]string{"instrument": "bit", "note": "1", "powered": "true"}}, {Id: 1191, Properties: map[string]string{"instrument": "bit", "note": "1", "powered": "false"}}, {Id: 1192, Properties: map[string]string{"instrument": "bit", "note": "2", "powered": "true"}}, {Id: 1193, Properties: map[string]string{"instrument": "bit", "note": "2", "powered": "false"}}, {Id: 1194, Properties: map[string]string{"instrument": "bit", "note": "3", "powered": "true"}}, {Id: 1195, Properties: map[string]string{"instrument": "bit", "note": "3", "powered": "false"}}, {Id: 1196, Properties: map[string]string{"instrument": "bit", "note": "4", "powered": "true"}}, {Id: 1197, Properties: map[string]string{"instrument": "bit", "note": "4", "powered": "false"}}, {Id: 1198, Properties: map[string]string{"instrument": "bit", "note": "5", "powered": "true"}}, {Id: 1199, Properties: map[string]string{"instrument": "bit", "note": "5", "powered": "false"}}, {Id: 1200, Properties: map[string]string{"instrument": "bit", "note": "6", "powered": "true"}}, {Id: 1201, Properties: map[string]string{"instrument": "bit", "note": "6", "powered": "false"}}, {Id: 1202, Properties: map[string]string{"instrument": "bit", "note": "7", "powered": "true"}}, {Id: 1203, Properties: map[string]string{"instrument": "bit", "note": "7", "powered": "false"}}, {Id: 1204, Properties: map[string]string{"instrument": "bit", "note": "8", "powered": "true"}}, {Id: 1205, Properties: map[string]string{"instrument": "bit", "note": "8", "powered": "false"}}, {Id: 1206, Properties: map[string]string{"instrument": "bit", "note": "9", "powered": "true"}}, {Id: 1207, Properties: map[string]string{"instrument": "bit", "note": "9", "powered": "false"}}, {Id: 1208, Properties: map[string]string{"instrument": "bit", "note": "10", "powered": "true"}}, {Id: 1209, Properties: map[string]string{"instrument": "bit", "note": "10", "powered": "false"}}, {Id: 1210, Properties: map[string]string{"instrument": "bit", "note": "11", "powered": "true"}}, {Id: 1211, Properties: map[string]string{"instrument": "bit", "note": "11", "powered": "false"}}, {Id: 1212, Properties: map[string]string{"instrument": "bit", "note": "12", "powered": "true"}}, {Id: 1213, Properties: map[string]string{"instrument": "bit", "note": "12", "powered": "false"}}, {Id: 1214, Properties: map[string]string{"instrument": "bit", "note": "13", "powered": "true"}}, {Id: 1215, Properties: map[string]string{"instrument": "bit", "note": "13", "powered": "false"}}, {Id: 1216, Properties: map[string]string{"instrument": "bit", "note": "14", "powered": "true"}}, {Id: 1217, Properties: map[string]string{"instrument": "bit", "note": "14", "powered": "false"}}, {Id: 1218, Properties: map[string]string{"instrument": "bit", "note": "15", "powered": "true"}}, {Id: 1219, Properties: map[string]string{"instrument": "bit", "note": "15", "powered": "false"}}, {Id: 1220, Properties: map[string]string{"instrument": "bit", "note": "16", "powered": "true"}}, {Id: 1221, Properties: map[string]string{"instrument": "bit", "note": "16", "powered": "false"}}, {Id: 1222, Properties: map[string]string{"instrument": "bit", "note": "17", "powered": "true"}}, {Id: 1223, Properties: map[string]string{"instrument": "bit", "note": "17", "powered": "false"}}, {Id: 1224, Properties: map[string]string{"instrument": "bit", "note": "18", "powered": "true"}}, {Id: 1225, Properties: map[string]string{"instrument": "bit", "note": "18", "powered": "false"}}, {Id: 1226, Properties: map[string]string{"instrument": "bit", "note": "19", "powered": "true"}}, {Id: 1227, Properties: map[string]string{"instrument": "bit", "note": "19", "powered": "false"}}, {Id: 1228, Properties: map[string]string{"instrument": "bit", "note": "20", "powered": "true"}}, {Id: 1229, Properties: map[string]string{"instrument": "bit", "note": "20", "powered": "false"}}, {Id: 1230, Properties: map[string]string{"instrument": "bit", "note": "21", "powered": "true"}}, {Id: 1231, Properties: map[string]string{"instrument": "bit", "note": "21", "powered": "false"}}, {Id: 1232, Properties: map[string]string{"instrument": "bit", "note": "22", "powered": "true"}}, {Id: 1233, Properties: map[string]string{"instrument": "bit", "note": "22", "powered": "false"}}, {Id: 1234, Properties: map[string]string{"instrument": "bit", "note": "23", "powered": "true"}}, {Id: 1235, Properties: map[string]string{"instrument": "bit", "note": "23", "powered": "false"}}, {Id: 1236, Properties: map[string]string{"instrument": "bit", "note": "24", "powered": "true"}}, {Id: 1237, Properties: map[string]string{"instrument": "bit", "note": "24", "powered": "false"}}, {Id: 1238, Properties: map[string]string{"instrument": "banjo", "note": "0", "powered": "true"}}, {Id: 1239, Properties: map[string]string{"instrument": "banjo", "note": "0", "powered": "false"}}, {Id: 1240, Properties: map[string]string{"instrument": "banjo", "note": "1", "powered": "true"}}, {Id: 1241, Properties: map[string]string{"instrument": "banjo", "note": "1", "powered": "false"}}, {Id: 1242, Properties: map[string]string{"instrument": "banjo", "note": "2", "powered": "true"}}, {Id: 1243, Properties: map[string]string{"instrument": "banjo", "note": "2", "powered": "false"}}, {Id: 1244, Properties: map[string]string{"instrument": "banjo", "note": "3", "powered": "true"}}, {Id: 1245, Properties: map[string]string{"instrument": "banjo", "note": "3", "powered": "false"}}, {Id: 1246, Properties: map[string]string{"instrument": "banjo", "note": "4", "powered": "true"}}, {Id: 1247, Properties: map[string]string{"instrument": "banjo", "note": "4", "powered": "false"}}, {Id: 1248, Properties: map[string]string{"instrument": "banjo", "note": "5", "powered": "true"}}, {Id: 1249, Properties: map[string]string{"instrument": "banjo", "note": "5", "powered": "false"}}, {Id: 1250, Properties: map[string]string{"instrument": "banjo", "note": "6", "powered": "true"}}, {Id: 1251, Properties: map[string]string{"instrument": "banjo", "note": "6", "powered": "false"}}, {Id: 1252, Properties: map[string]string{"instrument": "banjo", "note": "7", "powered": "true"}}, {Id: 1253, Properties: map[string]string{"instrument": "banjo", "note": "7", "powered": "false"}}, {Id: 1254, Properties: map[string]string{"instrument": "banjo", "note": "8", "powered": "true"}}, {Id: 1255, Properties: map[string]string{"instrument": "banjo", "note": "8", "powered": "false"}}, {Id: 1256, Properties: map[string]string{"instrument": "banjo", "note": "9", "powered": "true"}}, {Id: 1257, Properties: map[string]string{"instrument": "banjo", "note": "9", "powered": "false"}}, {Id: 1258, Properties: map[string]string{"instrument": "banjo", "note": "10", "powered": "true"}}, {Id: 1259, Properties: map[string]string{"instrument": "banjo", "note": "10", "powered": "false"}}, {Id: 1260, Properties: map[string]string{"instrument": "banjo", "note": "11", "powered": "true"}}, {Id: 1261, Properties: map[string]string{"instrument": "banjo", "note": "11", "powered": "false"}}, {Id: 1262, Properties: map[string]string{"instrument": "banjo", "note": "12", "powered": "true"}}, {Id: 1263, Properties: map[string]string{"instrument": "banjo", "note": "12", "powered": "false"}}, {Id: 1264, Properties: map[string]string{"instrument": "banjo", "note": "13", "powered": "true"}}, {Id: 1265, Properties: map[string]string{"instrument": "banjo", "note": "13", "powered": "false"}}, {Id: 1266, Properties: map[string]string{"instrument": "banjo", "note": "14", "powered": "true"}}, {Id: 1267, Properties: map[string]string{"instrument": "banjo", "note": "14", "powered": "false"}}, {Id: 1268, Properties: map[string]string{"instrument": "banjo", "note": "15", "powered": "true"}}, {Id: 1269, Properties: map[string]string{"instrument": "banjo", "note": "15", "powered": "false"}}, {Id: 1270, Properties: map[string]string{"instrument": "banjo", "note": "16", "powered": "true"}}, {Id: 1271, Properties: map[string]string{"instrument": "banjo", "note": "16", "powered": "false"}}, {Id: 1272, Properties: map[string]string{"instrument": "banjo", "note": "17", "powered": "true"}}, {Id: 1273, Properties: map[string]string{"instrument": "banjo", "note": "17", "powered": "false"}}, {Id: 1274, Properties: map[string]string{"instrument": "banjo", "note": "18", "powered": "true"}}, {Id: 1275, Properties: map[string]string{"instrument": "banjo", "note": "18", "powered": "false"}}, {Id: 1276, Properties: map[string]string{"instrument": "banjo", "note": "19", "powered": "true"}}, {Id: 1277, Properties: map[string]string{"instrument": "banjo", "note": "19", "powered": "false"}}, {Id: 1278, Properties: map[string]string{"instrument": "banjo", "note": "20", "powered": "true"}}, {Id: 1279, Properties: map[string]string{"instrument": "banjo", "note": "20", "powered": "false"}}, {Id: 1280, Properties: map[string]string{"instrument": "banjo", "note": "21", "powered": "true"}}, {Id: 1281, Properties: map[string]string{"instrument": "banjo", "note": "21", "powered": "false"}}, {Id: 1282, Properties: map[string]string{"instrument": "banjo", "note": "22", "powered": "true"}}, {Id: 1283, Properties: map[string]string{"instrument": "banjo", "note": "22", "powered": "false"}}, {Id: 1284, Properties: map[string]string{"instrument": "banjo", "note": "23", "powered": "true"}}, {Id: 1285, Properties: map[string]string{"instrument": "banjo", "note": "23", "powered": "false"}}, {Id: 1286, Properties: map[string]string{"instrument": "banjo", "note": "24", "powered": "true"}}, {Id: 1287, Properties: map[string]string{"instrument": "banjo", "note": "24", "powered": "false"}}, {Id: 1288, Properties: map[string]string{"instrument": "pling", "note": "0", "powered": "true"}}, {Id: 1289, Properties: map[string]string{"instrument": "pling", "note": "0", "powered": "false"}}, {Id: 1290, Properties: map[string]string{"instrument": "pling", "note": "1", "powered": "true"}}, {Id: 1291, Properties: map[string]string{"instrument": "pling", "note": "1", "powered": "false"}}, {Id: 1292, Properties: map[string]string{"instrument": "pling", "note": "2", "powered": "true"}}, {Id: 1293, Properties: map[string]string{"instrument": "pling", "note": "2", "powered": "false"}}, {Id: 1294, Properties: map[string]string{"instrument": "pling", "note": "3", "powered": "true"}}, {Id: 1295, Properties: map[string]string{"instrument": "pling", "note": "3", "powered": "false"}}, {Id: 1296, Properties: map[string]string{"instrument": "pling", "note": "4", "powered": "true"}}, {Id: 1297, Properties: map[string]string{"instrument": "pling", "note": "4", "powered": "false"}}, {Id: 1298, Properties: map[string]string{"instrument": "pling", "note": "5", "powered": "true"}}, {Id: 1299, Properties: map[string]string{"instrument": "pling", "note": "5", "powered": "false"}}, {Id: 1300, Properties: map[string]string{"instrument": "pling", "note": "6", "powered": "true"}}, {Id: 1301, Properties: map[string]string{"instrument": "pling", "note": "6", "powered": "false"}}, {Id: 1302, Properties: map[string]string{"instrument": "pling", "note": "7", "powered": "true"}}, {Id: 1303, Properties: map[string]string{"instrument": "pling", "note": "7", "powered": "false"}}, {Id: 1304, Properties: map[string]string{"instrument": "pling", "note": "8", "powered": "true"}}, {Id: 1305, Properties: map[string]string{"instrument": "pling", "note": "8", "powered": "false"}}, {Id: 1306, Properties: map[string]string{"instrument": "pling", "note": "9", "powered": "true"}}, {Id: 1307, Properties: map[string]string{"instrument": "pling", "note": "9", "powered": "false"}}, {Id: 1308, Properties: map[string]string{"instrument": "pling", "note": "10", "powered": "true"}}, {Id: 1309, Properties: map[string]string{"instrument": "pling", "note": "10", "powered": "false"}}, {Id: 1310, Properties: map[string]string{"instrument": "pling", "note": "11", "powered": "true"}}, {Id: 1311, Properties: map[string]string{"instrument": "pling", "note": "11", "powered": "false"}}, {Id: 1312, Properties: map[string]string{"instrument": "pling", "note": "12", "powered": "true"}}, {Id: 1313, Properties: map[string]string{"instrument": "pling", "note": "12", "powered": "false"}}, {Id: 1314, Properties: map[string]string{"instrument": "pling", "note": "13", "powered": "true"}}, {Id: 1315, Properties: map[string]string{"instrument": "pling", "note": "13", "powered": "false"}}, {Id: 1316, Properties: map[string]string{"instrument": "pling", "note": "14", "powered": "true"}}, {Id: 1317, Properties: map[string]string{"instrument": "pling", "note": "14", "powered": "false"}}, {Id: 1318, Properties: map[string]string{"instrument": "pling", "note": "15", "powered": "true"}}, {Id: 1319, Properties: map[string]string{"instrument": "pling", "note": "15", "powered": "false"}}, {Id: 1320, Properties: map[string]string{"instrument": "pling", "note": "16", "powered": "true"}}, {Id: 1321, Properties: map[string]string{"instrument": "pling", "note": "16", "powered": "false"}}, {Id: 1322, Properties: map[string]string{"instrument": "pling", "note": "17", "powered": "true"}}, {Id: 1323, Properties: map[string]string{"instrument": "pling", "note": "17", "powered": "false"}}, {Id: 1324, Properties: map[string]string{"instrument": "pling", "note": "18", "powered": "true"}}, {Id: 1325, Properties: map[string]string{"instrument": "pling", "note": "18", "powered": "false"}}, {Id: 1326, Properties: map[string]string{"instrument": "pling", "note": "19", "powered": "true"}}, {Id: 1327, Properties: map[string]string{"instrument": "pling", "note": "19", "powered": "false"}}, {Id: 1328, Properties: map[string]string{"instrument": "pling", "note": "20", "powered": "true"}}, {Id: 1329, Properties: map[string]string{"instrument": "pling", "note": "20", "powered": "false"}}, {Id: 1330, Properties: map[string]string{"instrument": "pling", "note": "21", "powered": "true"}}, {Id: 1331, Properties: map[string]string{"instrument": "pling", "note": "21", "powered": "false"}}, {Id: 1332, Properties: map[string]string{"instrument": "pling", "note": "22", "powered": "true"}}, {Id: 1333, Properties: map[string]string{"instrument": "pling", "note": "22", "powered": "false"}}, {Id: 1334, Properties: map[string]string{"instrument": "pling", "note": "23", "powered": "true"}}, {Id: 1335, Properties: map[string]string{"instrument": "pling", "note": "23", "powered": "false"}}, {Id: 1336, Properties: map[string]string{"instrument": "pling", "note": "24", "powered": "true"}}, {Id: 1337, Properties: map[string]string{"instrument": "pling", "note": "24", "powered": "false"}}, {Id: 1338, Properties: map[string]string{"instrument": "zombie", "note": "0", "powered": "true"}}, {Id: 1339, Properties: map[string]string{"instrument": "zombie", "note": "0", "powered": "false"}}, {Id: 1340, Properties: map[string]string{"instrument": "zombie", "note": "1", "powered": "true"}}, {Id: 1341, Properties: map[string]string{"instrument": "zombie", "note": "1", "powered": "false"}}, {Id: 1342, Properties: map[string]string{"instrument": "zombie", "note": "2", "powered": "true"}}, {Id: 1343, Properties: map[string]string{"instrument": "zombie", "note": "2", "powered": "false"}}, {Id: 1344, Properties: map[string]string{"instrument": "zombie", "note": "3", "powered": "true"}}, {Id: 1345, Properties: map[string]string{"instrument": "zombie", "note": "3", "powered": "false"}}, {Id: 1346, Properties: map[string]string{"instrument": "zombie", "note": "4", "powered": "true"}}, {Id: 1347, Properties: map[string]string{"instrument": "zombie", "note": "4", "powered": "false"}}, {Id: 1348, Properties: map[string]string{"instrument": "zombie", "note": "5", "powered": "true"}}, {Id: 1349, Properties: map[string]string{"instrument": "zombie", "note": "5", "powered": "false"}}, {Id: 1350, Properties: map[string]string{"instrument": "zombie", "note": "6", "powered": "true"}}, {Id: 1351, Properties: map[string]string{"instrument": "zombie", "note": "6", "powered": "false"}}, {Id: 1352, Properties: map[string]string{"instrument": "zombie", "note": "7", "powered": "true"}}, {Id: 1353, Properties: map[string]string{"instrument": "zombie", "note": "7", "powered": "false"}}, {Id: 1354, Properties: map[string]string{"instrument": "zombie", "note": "8", "powered": "true"}}, {Id: 1355, Properties: map[string]string{"instrument": "zombie", "note": "8", "powered": "false"}}, {Id: 1356, Properties: map[string]string{"instrument": "zombie", "note": "9", "powered": "true"}}, {Id: 1357, Properties: map[string]string{"instrument": "zombie", "note": "9", "powered": "false"}}, {Id: 1358, Properties: map[string]string{"instrument": "zombie", "note": "10", "powered": "true"}}, {Id: 1359, Properties: map[string]string{"instrument": "zombie", "note": "10", "powered": "false"}}, {Id: 1360, Properties: map[string]string{"instrument": "zombie", "note": "11", "powered": "true"}}, {Id: 1361, Properties: map[string]string{"instrument": "zombie", "note": "11", "powered": "false"}}, {Id: 1362, Properties: map[string]string{"instrument": "zombie", "note": "12", "powered": "true"}}, {Id: 1363, Properties: map[string]string{"instrument": "zombie", "note": "12", "powered": "false"}}, {Id: 1364, Properties: map[string]string{"instrument": "zombie", "note": "13", "powered": "true"}}, {Id: 1365, Properties: map[string]string{"instrument": "zombie", "note": "13", "powered": "false"}}, {Id: 1366, Properties: map[string]string{"instrument": "zombie", "note": "14", "powered": "true"}}, {Id: 1367, Properties: map[string]string{"instrument": "zombie", "note": "14", "powered": "false"}}, {Id: 1368, Properties: map[string]string{"instrument": "zombie", "note": "15", "powered": "true"}}, {Id: 1369, Properties: map[string]string{"instrument": "zombie", "note": "15", "powered": "false"}}, {Id: 1370, Properties: map[string]string{"instrument": "zombie", "note": "16", "powered": "true"}}, {Id: 1371, Properties: map[string]string{"instrument": "zombie", "note": "16", "powered": "false"}}, {Id: 1372, Properties: map[string]string{"instrument": "zombie", "note": "17", "powered": "true"}}, {Id: 1373, Properties: map[string]string{"instrument": "zombie", "note": "17", "powered": "false"}}, {Id: 1374, Properties: map[string]string{"instrument": "zombie", "note": "18", "powered": "true"}}, {Id: 1375, Properties: map[string]string{"instrument": "zombie", "note": "18", "powered": "false"}}, {Id: 1376, Properties: map[string]string{"instrument": "zombie", "note": "19", "powered": "true"}}, {Id: 1377, Properties: map[string]string{"instrument": "zombie", "note": "19", "powered": "false"}}, {Id: 1378, Properties: map[string]string{"instrument": "zombie", "note": "20", "powered": "true"}}, {Id: 1379, Properties: map[string]string{"instrument": "zombie", "note": "20", "powered": "false"}}, {Id: 1380, Properties: map[string]string{"instrument": "zombie", "note": "21", "powered": "true"}}, {Id: 1381, Properties: map[string]string{"instrument": "zombie", "note": "21", "powered": "false"}}, {Id: 1382, Properties: map[string]string{"instrument": "zombie", "note": "22", "powered": "true"}}, {Id: 1383, Properties: map[string]string{"instrument": "zombie", "note": "22", "powered": "false"}}, {Id: 1384, Properties: map[string]string{"instrument": "zombie", "note": "23", "powered": "true"}}, {Id: 1385, Properties: map[string]string{"instrument": "zombie", "note": "23", "powered": "false"}}, {Id: 1386, Properties: map[string]string{"instrument": "zombie", "note": "24", "powered": "true"}}, {Id: 1387, Properties: map[string]string{"instrument": "zombie", "note": "24", "powered": "false"}}, {Id: 1388, Properties: map[string]string{"instrument": "skeleton", "note": "0", "powered": "true"}}, {Id: 1389, Properties: map[string]string{"instrument": "skeleton", "note": "0", "powered": "false"}}, {Id: 1390, Properties: map[string]string{"instrument": "skeleton", "note": "1", "powered": "true"}}, {Id: 1391, Properties: map[string]string{"instrument": "skeleton", "note": "1", "powered": "false"}}, {Id: 1392, Properties: map[string]string{"instrument": "skeleton", "note": "2", "powered": "true"}}, {Id: 1393, Properties: map[string]string{"instrument": "skeleton", "note": "2", "powered": "false"}}, {Id: 1394, Properties: map[string]string{"instrument": "skeleton", "note": "3", "powered": "true"}}, {Id: 1395, Properties: map[string]string{"instrument": "skeleton", "note": "3", "powered": "false"}}, {Id: 1396, Properties: map[string]string{"instrument": "skeleton", "note": "4", "powered": "true"}}, {Id: 1397, Properties: map[string]string{"instrument": "skeleton", "note": "4", "powered": "false"}}, {Id: 1398, Properties: map[string]string{"instrument": "skeleton", "note": "5", "powered": "true"}}, {Id: 1399, Properties: map[string]string{"instrument": "skeleton", "note": "5", "powered": "false"}}, {Id: 1400, Properties: map[string]string{"instrument": "skeleton", "note": "6", "powered": "true"}}, {Id: 1401, Properties: map[string]string{"instrument": "skeleton", "note": "6", "powered": "false"}}, {Id: 1402, Properties: map[string]string{"instrument": "skeleton", "note": "7", "powered": "true"}}, {Id: 1403, Properties: map[string]string{"instrument": "skeleton", "note": "7", "powered": "false"}}, {Id: 1404, Properties: map[string]string{"instrument": "skeleton", "note": "8", "powered": "true"}}, {Id: 1405, Properties: map[string]string{"instrument": "skeleton", "note": "8", "powered": "false"}}, {Id: 1406, Properties: map[string]string{"instrument": "skeleton", "note": "9", "powered": "true"}}, {Id: 1407, Properties: map[string]string{"instrument": "skeleton", "note": "9", "powered": "false"}}, {Id: 1408, Properties: map[string]string{"instrument": "skeleton", "note": "10", "powered": "true"}}, {Id: 1409, Properties: map[string]string{"instrument": "skeleton", "note": "10", "powered": "false"}}, {Id: 1410, Properties: map[string]string{"instrument": "skeleton", "note": "11", "powered": "true"}}, {Id: 1411, Properties: map[string]string{"instrument": "skeleton", "note": "11", "powered": "false"}}, {Id: 1412, Properties: map[string]string{"instrument": "skeleton", "note": "12", "powered": "true"}}, {Id: 1413, Properties: map[string]string{"instrument": "skeleton", "note": "12", "powered": "false"}}, {Id: 1414, Properties: map[string]string{"instrument": "skeleton", "note": "13", "powered": "true"}}, {Id: 1415, Properties: map[string]string{"instrument": "skeleton", "note": "13", "powered": "false"}}, {Id: 1416, Properties: map[string]string{"instrument": "skeleton", "note": "14", "powered": "true"}}, {Id: 1417, Properties: map[string]string{"instrument": "skeleton", "note": "14", "powered": "false"}}, {Id: 1418, Properties: map[string]string{"instrument": "skeleton", "note": "15", "powered": "true"}}, {Id: 1419, Properties: map[string]string{"instrument": "skeleton", "note": "15", "powered": "false"}}, {Id: 1420, Properties: map[string]string{"instrument": "skeleton", "note": "16", "powered": "true"}}, {Id: 1421, Properties: map[string]string{"instrument": "skeleton", "note": "16", "powered": "false"}}, {Id: 1422, Properties: map[string]string{"instrument": "skeleton", "note": "17", "powered": "true"}}, {Id: 1423, Properties: map[string]string{"instrument": "skeleton", "note": "17", "powered": "false"}}, {Id: 1424, Properties: map[string]string{"instrument": "skeleton", "note": "18", "powered": "true"}}, {Id: 1425, Properties: map[string]string{"instrument": "skeleton", "note": "18", "powered": "false"}}, {Id: 1426, Properties: map[string]string{"instrument": "skeleton", "note": "19", "powered": "true"}}, {Id: 1427, Properties: map[string]string{"instrument": "skeleton", "note": "19", "powered": "false"}}, {Id: 1428, Properties: map[string]string{"instrument": "skeleton", "note": "20", "powered": "true"}}, {Id: 1429, Properties: map[string]string{"instrument": "skeleton", "note": "20", "powered": "false"}}, {Id: 1430, Properties: map[string]string{"instrument": "skeleton", "note": "21", "powered": "true"}}, {Id: 1431, Properties: map[string]string{"instrument": "skeleton", "note": "21", "powered": "false"}}, {Id: 1432, Properties: map[string]string{"instrument": "skeleton", "note": "22", "powered": "true"}}, {Id: 1433, Properties: map[string]string{"instrument": "skeleton", "note": "22", "powered": "false"}}, {Id: 1434, Properties: map[string]string{"instrument": "skeleton", "note": "23", "powered": "true"}}, {Id: 1435, Properties: map[string]string{"instrument": "skeleton", "note": "23", "powered": "false"}}, {Id: 1436, Properties: map[string]string{"instrument": "skeleton", "note": "24", "powered": "true"}}, {Id: 1437, Properties: map[string]string{"instrument": "skeleton", "note": "24", "powered": "false"}}, {Id: 1438, Properties: map[string]string{"instrument": "creeper", "note": "0", "powered": "true"}}, {Id: 1439, Properties: map[string]string{"instrument": "creeper", "note": "0", "powered": "false"}}, {Id: 1440, Properties: map[string]string{"instrument": "creeper", "note": "1", "powered": "true"}}, {Id: 1441, Properties: map[string]string{"instrument": "creeper", "note": "1", "powered": "false"}}, {Id: 1442, Properties: map[string]string{"instrument": "creeper", "note": "2", "powered": "true"}}, {Id: 1443, Properties: map[string]string{"instrument": "creeper", "note": "2", "powered": "false"}}, {Id: 1444, Properties: map[string]string{"instrument": "creeper", "note": "3", "powered": "true"}}, {Id: 1445, Properties: map[string]string{"instrument": "creeper", "note": "3", "powered": "false"}}, {Id: 1446, Properties: map[string]string{"instrument": "creeper", "note": "4", "powered": "true"}}, {Id: 1447, Properties: map[string]string{"instrument": "creeper", "note": "4", "powered": "false"}}, {Id: 1448, Properties: map[string]string{"instrument": "creeper", "note": "5", "powered": "true"}}, {Id: 1449, Properties: map[string]string{"instrument": "creeper", "note": "5", "powered": "false"}}, {Id: 1450, Properties: map[string]string{"instrument": "creeper", "note": "6", "powered": "true"}}, {Id: 1451, Properties: map[string]string{"instrument": "creeper", "note": "6", "powered": "false"}}, {Id: 1452, Properties: map[string]string{"instrument": "creeper", "note": "7", "powered": "true"}}, {Id: 1453, Properties: map[string]string{"instrument": "creeper", "note": "7", "powered": "false"}}, {Id: 1454, Properties: map[string]string{"instrument": "creeper", "note": "8", "powered": "true"}}, {Id: 1455, Properties: map[string]string{"instrument": "creeper", "note": "8", "powered": "false"}}, {Id: 1456, Properties: map[string]string{"instrument": "creeper", "note": "9", "powered": "true"}}, {Id: 1457, Properties: map[string]string{"instrument": "creeper", "note": "9", "powered": "false"}}, {Id: 1458, Properties: map[string]string{"instrument": "creeper", "note": "10", "powered": "true"}}, {Id: 1459, Properties: map[string]string{"instrument": "creeper", "note": "10", "powered": "false"}}, {Id: 1460, Properties: map[string]string{"instrument": "creeper", "note": "11", "powered": "true"}}, {Id: 1461, Properties: map[string]string{"instrument": "creeper", "note": "11", "powered": "false"}}, {Id: 1462, Properties: map[string]string{"instrument": "creeper", "note": "12", "powered": "true"}}, {Id: 1463, Properties: map[string]string{"instrument": "creeper", "note": "12", "powered": "false"}}, {Id: 1464, Properties: map[string]string{"instrument": "creeper", "note": "13", "powered": "true"}}, {Id: 1465, Properties: map[string]string{"instrument": "creeper", "note": "13", "powered": "false"}}, {Id: 1466, Properties: map[string]string{"instrument": "creeper", "note": "14", "powered": "true"}}, {Id: 1467, Properties: map[string]string{"instrument": "creeper", "note": "14", "powered": "false"}}, {Id: 1468, Properties: map[string]string{"instrument": "creeper", "note": "15", "powered": "true"}}, {Id: 1469, Properties: map[string]string{"instrument": "creeper", "note": "15", "powered": "false"}}, {Id: 1470, Properties: map[string]string{"instrument": "creeper", "note": "16", "powered": "true"}}, {Id: 1471, Properties: map[string]string{"instrument": "creeper", "note": "16", "powered": "false"}}, {Id: 1472, Properties: map[string]string{"instrument": "creeper", "note": "17", "powered": "true"}}, {Id: 1473, Properties: map[string]string{"instrument": "creeper", "note": "17", "powered": "false"}}, {Id: 1474, Properties: map[string]string{"instrument": "creeper", "note": "18", "powered": "true"}}, {Id: 1475, Properties: map[string]string{"instrument": "creeper", "note": "18", "powered": "false"}}, {Id: 1476, Properties: map[string]string{"instrument": "creeper", "note": "19", "powered": "true"}}, {Id: 1477, Properties: map[string]string{"instrument": "creeper", "note": "19", "powered": "false"}}, {Id: 1478, Properties: map[string]string{"instrument": "creeper", "note": "20", "powered": "true"}}, {Id: 1479, Properties: map[string]string{"instrument": "creeper", "note": "20", "powered": "false"}}, {Id: 1480, Properties: map[string]string{"instrument": "creeper", "note": "21", "powered": "true"}}, {Id: 1481, Properties: map[string]string{"instrument": "creeper", "note": "21", "powered": "false"}}, {Id: 1482, Properties: map[string]string{"instrument": "creeper", "note": "22", "powered": "true"}}, {Id: 1483, Properties: map[string]string{"instrument": "creeper", "note": "22", "powered": "false"}}, {Id: 1484, Properties: map[string]string{"instrument": "creeper", "note": "23", "powered": "true"}}, {Id: 1485, Properties: map[string]string{"instrument": "creeper", "note": "23", "powered": "false"}}, {Id: 1486, Properties: map[string]string{"instrument": "creeper", "note": "24", "powered": "true"}}, {Id: 1487, Properties: map[string]string{"instrument": "creeper", "note": "24", "powered": "false"}}, {Id: 1488, Properties: map[string]string{"instrument": "dragon", "note": "0", "powered": "true"}}, {Id: 1489, Properties: map[string]string{"instrument": "dragon", "note": "0", "powered": "false"}}, {Id: 1490, Properties: map[string]string{"instrument": "dragon", "note": "1", "powered": "true"}}, {Id: 1491, Properties: map[string]string{"instrument": "dragon", "note": "1", "powered": "false"}}, {Id: 1492, Properties: map[string]string{"instrument": "dragon", "note": "2", "powered": "true"}}, {Id: 1493, Properties: map[string]string{"instrument": "dragon", "note": "2", "powered": "false"}}, {Id: 1494, Properties: map[string]string{"instrument": "dragon", "note": "3", "powered": "true"}}, {Id: 1495, Properties: map[string]string{"instrument": "dragon", "note": "3", "powered": "false"}}, {Id: 1496, Properties: map[string]string{"instrument": "dragon", "note": "4", "powered": "true"}}, {Id: 1497, Properties: map[string]string{"instrument": "dragon", "note": "4", "powered": "false"}}, {Id: 1498, Properties: map[string]string{"instrument": "dragon", "note": "5", "powered": "true"}}, {Id: 1499, Properties: map[string]string{"instrument": "dragon", "note": "5", "powered": "false"}}, {Id: 1500, Properties: map[string]string{"instrument": "dragon", "note": "6", "powered": "true"}}, {Id: 1501, Properties: map[string]string{"instrument": "dragon", "note": "6", "powered": "false"}}, {Id: 1502, Properties: map[string]string{"instrument": "dragon", "note": "7", "powered": "true"}}, {Id: 1503, Properties: map[string]string{"instrument": "dragon", "note": "7", "powered": "false"}}, {Id: 1504, Properties: map[string]string{"instrument": "dragon", "note": "8", "powered": "true"}}, {Id: 1505, Properties: map[string]string{"instrument": "dragon", "note": "8", "powered": "false"}}, {Id: 1506, Properties: map[string]string{"instrument": "dragon", "note": "9", "powered": "true"}}, {Id: 1507, Properties: map[string]string{"instrument": "dragon", "note": "9", "powered": "false"}}, {Id: 1508, Properties: map[string]string{"instrument": "dragon", "note": "10", "powered": "true"}}, {Id: 1509, Properties: map[string]string{"instrument": "dragon", "note": "10", "powered": "false"}}, {Id: 1510, Properties: map[string]string{"instrument": "dragon", "note": "11", "powered": "true"}}, {Id: 1511, Properties: map[string]string{"instrument": "dragon", "note": "11", "powered": "false"}}, {Id: 1512, Properties: map[string]string{"instrument": "dragon", "note": "12", "powered": "true"}}, {Id: 1513, Properties: map[string]string{"instrument": "dragon", "note": "12", "powered": "false"}}, {Id: 1514, Properties: map[string]string{"instrument": "dragon", "note": "13", "powered": "true"}}, {Id: 1515, Properties: map[string]string{"instrument": "dragon", "note": "13", "powered": "false"}}, {Id: 1516, Properties: map[string]string{"instrument": "dragon", "note": "14", "powered": "true"}}, {Id: 1517, Properties: map[string]string{"instrument": "dragon", "note": "14", "powered": "false"}}, {Id: 1518, Properties: map[string]string{"instrument": "dragon", "note": "15", "powered": "true"}}, {Id: 1519, Properties: map[string]string{"instrument": "dragon", "note": "15", "powered": "false"}}, {Id: 1520, Properties: map[string]string{"instrument": "dragon", "note": "16", "powered": "true"}}, {Id: 1521, Properties: map[string]string{"instrument": "dragon", "note": "16", "powered": "false"}}, {Id: 1522, Properties: map[string]string{"instrument": "dragon", "note": "17", "powered": "true"}}, {Id: 1523, Properties: map[string]string{"instrument": "dragon", "note": "17", "powered": "false"}}, {Id: 1524, Properties: map[string]string{"instrument": "dragon", "note": "18", "powered": "true"}}, {Id: 1525, Properties: map[string]string{"instrument": "dragon", "note": "18", "powered": "false"}}, {Id: 1526, Properties: map[string]string{"instrument": "dragon", "note": "19", "powered": "true"}}, {Id: 1527, Properties: map[string]string{"instrument": "dragon", "note": "19", "powered": "false"}}, {Id: 1528, Properties: map[string]string{"instrument": "dragon", "note": "20", "powered": "true"}}, {Id: 1529, Properties: map[string]string{"instrument": "dragon", "note": "20", "powered": "false"}}, {Id: 1530, Properties: map[string]string{"instrument": "dragon", "note": "21", "powered": "true"}}, {Id: 1531, Properties: map[string]string{"instrument": "dragon", "note": "21", "powered": "false"}}, {Id: 1532, Properties: map[string]string{"instrument": "dragon", "note": "22", "powered": "true"}}, {Id: 1533, Properties: map[string]string{"instrument": "dragon", "note": "22", "powered": "false"}}, {Id: 1534, Properties: map[string]string{"instrument": "dragon", "note": "23", "powered": "true"}}, {Id: 1535, Properties: map[string]string{"instrument": "dragon", "note": "23", "powered": "false"}}, {Id: 1536, Properties: map[string]string{"instrument": "dragon", "note": "24", "powered": "true"}}, {Id: 1537, Properties: map[string]string{"instrument": "dragon", "note": "24", "powered": "false"}}, {Id: 1538, Properties: map[string]string{"instrument": "wither_skeleton", "note": "0", "powered": "true"}}, {Id: 1539, Properties: map[string]string{"instrument": "wither_skeleton", "note": "0", "powered": "false"}}, {Id: 1540, Properties: map[string]string{"instrument": "wither_skeleton", "note": "1", "powered": "true"}}, {Id: 1541, Properties: map[string]string{"instrument": "wither_skeleton", "note": "1", "powered": "false"}}, {Id: 1542, Properties: map[string]string{"instrument": "wither_skeleton", "note": "2", "powered": "true"}}, {Id: 1543, Properties: map[string]string{"instrument": "wither_skeleton", "note": "2", "powered": "false"}}, {Id: 1544, Properties: map[string]string{"instrument": "wither_skeleton", "note": "3", "powered": "true"}}, {Id: 1545, Properties: map[string]string{"instrument": "wither_skeleton", "note": "3", "powered": "false"}}, {Id: 1546, Properties: map[string]string{"instrument": "wither_skeleton", "note": "4", "powered": "true"}}, {Id: 1547, Properties: map[string]string{"instrument": "wither_skeleton", "note": "4", "powered": "false"}}, {Id: 1548, Properties: map[string]string{"instrument": "wither_skeleton", "note": "5", "powered": "true"}}, {Id: 1549, Properties: map[string]string{"instrument": "wither_skeleton", "note": "5", "powered": "false"}}, {Id: 1550, Properties: map[string]string{"instrument": "wither_skeleton", "note": "6", "powered": "true"}}, {Id: 1551, Properties: map[string]string{"instrument": "wither_skeleton", "note": "6", "powered": "false"}}, {Id: 1552, Properties: map[string]string{"instrument": "wither_skeleton", "note": "7", "powered": "true"}}, {Id: 1553, Properties: map[string]string{"instrument": "wither_skeleton", "note": "7", "powered": "false"}}, {Id: 1554, Properties: map[string]string{"instrument": "wither_skeleton", "note": "8", "powered": "true"}}, {Id: 1555, Properties: map[string]string{"instrument": "wither_skeleton", "note": "8", "powered": "false"}}, {Id: 1556, Properties: map[string]string{"instrument": "wither_skeleton", "note": "9", "powered": "true"}}, {Id: 1557, Properties: map[string]string{"instrument": "wither_skeleton", "note": "9", "powered": "false"}}, {Id: 1558, Properties: map[string]string{"instrument": "wither_skeleton", "note": "10", "powered": "true"}}, {Id: 1559, Properties: map[string]string{"instrument": "wither_skeleton", "note": "10", "powered": "false"}}, {Id: 1560, Properties: map[string]string{"instrument": "wither_skeleton", "note": "11", "powered": "true"}}, {Id: 1561, Properties: map[string]string{"instrument": "wither_skeleton", "note": "11", "powered": "false"}}, {Id: 1562, Properties: map[string]string{"instrument": "wither_skeleton", "note": "12", "powered": "true"}}, {Id: 1563, Properties: map[string]string{"instrument": "wither_skeleton", "note": "12", "powered": "false"}}, {Id: 1564, Properties: map[string]string{"instrument": "wither_skeleton", "note": "13", "powered": "true"}}, {Id: 1565, Properties: map[string]string{"instrument": "wither_skeleton", "note": "13", "powered": "false"}}, {Id: 1566, Properties: map[string]string{"instrument": "wither_skeleton", "note": "14", "powered": "true"}}, {Id: 1567, Properties: map[string]string{"instrument": "wither_skeleton", "note": "14", "powered": "false"}}, {Id: 1568, Properties: map[string]string{"instrument": "wither_skeleton", "note": "15", "powered": "true"}}, {Id: 1569, Properties: map[string]string{"instrument": "wither_skeleton", "note": "15", "powered": "false"}}, {Id: 1570, Properties: map[string]string{"instrument": "wither_skeleton", "note": "16", "powered": "true"}}, {Id: 1571, Properties: map[string]string{"instrument": "wither_skeleton", "note": "16", "powered": "false"}}, {Id: 1572, Properties: map[string]string{"instrument": "wither_skeleton", "note": "17", "powered": "true"}}, {Id: 1573, Properties: map[string]string{"instrument": "wither_skeleton", "note": "17", "powered": "false"}}, {Id: 1574, Properties: map[string]string{"instrument": "wither_skeleton", "note": "18", "powered": "true"}}, {Id: 1575, Properties: map[string]string{"instrument": "wither_skeleton", "note": "18", "powered": "false"}}, {Id: 1576, Properties: map[string]string{"instrument": "wither_skeleton", "note": "19", "powered": "true"}}, {Id: 1577, Properties: map[string]string{"instrument": "wither_skeleton", "note": "19", "powered": "false"}}, {Id: 1578, Properties: map[string]string{"instrument": "wither_skeleton", "note": "20", "powered": "true"}}, {Id: 1579, Properties: map[string]string{"instrument": "wither_skeleton", "note": "20", "powered": "false"}}, {Id: 1580, Properties: map[string]string{"instrument": "wither_skeleton", "note": "21", "powered": "true"}}, {Id: 1581, Properties: map[string]string{"instrument": "wither_skeleton", "note": "21", "powered": "false"}}, {Id: 1582, Properties: map[string]string{"instrument": "wither_skeleton", "note": "22", "powered": "true"}}, {Id: 1583, Properties: map[string]string{"instrument": "wither_skeleton", "note": "22", "powered": "false"}}, {Id: 1584, Properties: map[string]string{"instrument": "wither_skeleton", "note": "23", "powered": "true"}}, {Id: 1585, Properties: map[string]string{"instrument": "wither_skeleton", "note": "23", "powered": "false"}}, {Id: 1586, Properties: map[string]string{"instrument": "wither_skeleton", "note": "24", "powered": "true"}}, {Id: 1587, Properties: map[string]string{"instrument": "wither_skeleton", "note": "24", "powered": "false"}}, {Id: 1588, Properties: map[string]string{"instrument": "piglin", "note": "0", "powered": "true"}}, {Id: 1589, Properties: map[string]string{"instrument": "piglin", "note": "0", "powered": "false"}}, {Id: 1590, Properties: map[string]string{"instrument": "piglin", "note": "1", "powered": "true"}}, {Id: 1591, Properties: map[string]string{"instrument": "piglin", "note": "1", "powered": "false"}}, {Id: 1592, Properties: map[string]string{"instrument": "piglin", "note": "2", "powered": "true"}}, {Id: 1593, Properties: map[string]string{"instrument": "piglin", "note": "2", "powered": "false"}}, {Id: 1594, Properties: map[string]string{"instrument": "piglin", "note": "3", "powered": "true"}}, {Id: 1595, Properties: map[string]string{"instrument": "piglin", "note": "3", "powered": "false"}}, {Id: 1596, Properties: map[string]string{"instrument": "piglin", "note": "4", "powered": "true"}}, {Id: 1597, Properties: map[string]string{"instrument": "piglin", "note": "4", "powered": "false"}}, {Id: 1598, Properties: map[string]string{"instrument": "piglin", "note": "5", "powered": "true"}}, {Id: 1599, Properties: map[string]string{"instrument": "piglin", "note": "5", "powered": "false"}}, {Id: 1600, Properties: map[string]string{"instrument": "piglin", "note": "6", "powered": "true"}}, {Id: 1601, Properties: map[string]string{"instrument": "piglin", "note": "6", "powered": "false"}}, {Id: 1602, Properties: map[string]string{"instrument": "piglin", "note": "7", "powered": "true"}}, {Id: 1603, Properties: map[string]string{"instrument": "piglin", "note": "7", "powered": "false"}}, {Id: 1604, Properties: map[string]string{"instrument": "piglin", "note": "8", "powered": "true"}}, {Id: 1605, Properties: map[string]string{"instrument": "piglin", "note": "8", "powered": "false"}}, {Id: 1606, Properties: map[string]string{"instrument": "piglin", "note": "9", "powered": "true"}}, {Id: 1607, Properties: map[string]string{"instrument": "piglin", "note": "9", "powered": "false"}}, {Id: 1608, Properties: map[string]string{"instrument": "piglin", "note": "10", "powered": "true"}}, {Id: 1609, Properties: map[string]string{"instrument": "piglin", "note": "10", "powered": "false"}}, {Id: 1610, Properties: map[string]string{"instrument": "piglin", "note": "11", "powered": "true"}}, {Id: 1611, Properties: map[string]string{"instrument": "piglin", "note": "11", "powered": "false"}}, {Id: 1612, Properties: map[string]string{"instrument": "piglin", "note": "12", "powered": "true"}}, {Id: 1613, Properties: map[string]string{"instrument": "piglin", "note": "12", "powered": "false"}}, {Id: 1614, Properties: map[string]string{"instrument": "piglin", "note": "13", "powered": "true"}}, {Id: 1615, Properties: map[string]string{"instrument": "piglin", "note": "13", "powered": "false"}}, {Id: 1616, Properties: map[string]string{"instrument": "piglin", "note": "14", "powered": "true"}}, {Id: 1617, Properties: map[string]string{"instrument": "piglin", "note": "14", "powered": "false"}}, {Id: 1618, Properties: map[string]string{"instrument": "piglin", "note": "15", "powered": "true"}}, {Id: 1619, Properties: map[string]string{"instrument": "piglin", "note": "15", "powered": "false"}}, {Id: 1620, Properties: map[string]string{"instrument": "piglin", "note": "16", "powered": "true"}}, {Id: 1621, Properties: map[string]string{"instrument": "piglin", "note": "16", "powered": "false"}}, {Id: 1622, Properties: map[string]string{"instrument": "piglin", "note": "17", "powered": "true"}}, {Id: 1623, Properties: map[string]string{"instrument": "piglin", "note": "17", "powered": "false"}}, {Id: 1624, Properties: map[string]string{"instrument": "piglin", "note": "18", "powered": "true"}}, {Id: 1625, Properties: map[string]string{"instrument": "piglin", "note": "18", "powered": "false"}}, {Id: 1626, Properties: map[string]string{"instrument": "piglin", "note": "19", "powered": "true"}}, {Id: 1627, Properties: map[string]string{"instrument": "piglin", "note": "19", "powered": "false"}}, {Id: 1628, Properties: map[string]string{"instrument": "piglin", "note": "20", "powered": "true"}}, {Id: 1629, Properties: map[string]string{"instrument": "piglin", "note": "20", "powered": "false"}}, {Id: 1630, Properties: map[string]string{"instrument": "piglin", "note": "21", "powered": "true"}}, {Id: 1631, Properties: map[string]string{"instrument": "piglin", "note": "21", "powered": "false"}}, {Id: 1632, Properties: map[string]string{"instrument": "piglin", "note": "22", "powered": "true"}}, {Id: 1633, Properties: map[string]string{"instrument": "piglin", "note": "22", "powered": "false"}}, {Id: 1634, Properties: map[string]string{"instrument": "piglin", "note": "23", "powered": "true"}}, {Id: 1635, Properties: map[string]string{"instrument": "piglin", "note": "23", "powered": "false"}}, {Id: 1636, Properties: map[string]string{"instrument": "piglin", "note": "24", "powered": "true"}}, {Id: 1637, Properties: map[string]string{"instrument": "piglin", "note": "24", "powered": "false"}}, {Id: 1638, Properties: map[string]string{"instrument": "custom_head", "note": "0", "powered": "true"}}, {Id: 1639, Properties: map[string]string{"instrument": "custom_head", "note": "0", "powered": "false"}}, {Id: 1640, Properties: map[string]string{"instrument": "custom_head", "note": "1", "powered": "true"}}, {Id: 1641, Properties: map[string]string{"instrument": "custom_head", "note": "1", "powered": "false"}}, {Id: 1642, Properties: map[string]string{"instrument": "custom_head", "note": "2", "powered": "true"}}, {Id: 1643, Properties: map[string]string{"instrument": "custom_head", "note": "2", "powered": "false"}}, {Id: 1644, Properties: map[string]string{"instrument": "custom_head", "note": "3", "powered": "true"}}, {Id: 1645, Properties: map[string]string{"instrument": "custom_head", "note": "3", "powered": "false"}}, {Id: 1646, Properties: map[string]string{"instrument": "custom_head", "note": "4", "powered": "true"}}, {Id: 1647, Properties: map[string]string{"instrument": "custom_head", "note": "4", "powered": "false"}}, {Id: 1648, Properties: map[string]string{"instrument": "custom_head", "note": "5", "powered": "true"}}, {Id: 1649, Properties: map[string]string{"instrument": "custom_head", "note": "5", "powered": "false"}}, {Id: 1650, Properties: map[string]string{"instrument": "custom_head", "note": "6", "powered": "true"}}, {Id: 1651, Properties: map[string]string{"instrument": "custom_head", "note": "6", "powered": "false"}}, {Id: 1652, Properties: map[string]string{"instrument": "custom_head", "note": "7", "powered": "true"}}, {Id: 1653, Properties: map[string]string{"instrument": "custom_head", "note": "7", "powered": "false"}}, {Id: 1654, Properties: map[string]string{"instrument": "custom_head", "note": "8", "powered": "true"}}, {Id: 1655, Properties: map[string]string{"instrument": "custom_head", "note": "8", "powered": "false"}}, {Id: 1656, Properties: map[string]string{"instrument": "custom_head", "note": "9", "powered": "true"}}, {Id: 1657, Properties: map[string]string{"instrument": "custom_head", "note": "9", "powered": "false"}}, {Id: 1658, Properties: map[string]string{"instrument": "custom_head", "note": "10", "powered": "true"}}, {Id: 1659, Properties: map[string]string{"instrument": "custom_head", "note": "10", "powered": "false"}}, {Id: 1660, Properties: map[string]string{"instrument": "custom_head", "note": "11", "powered": "true"}}, {Id: 1661, Properties: map[string]string{"instrument": "custom_head", "note": "11", "powered": "false"}}, {Id: 1662, Properties: map[string]string{"instrument": "custom_head", "note": "12", "powered": "true"}}, {Id: 1663, Properties: map[string]string{"instrument": "custom_head", "note": "12", "powered": "false"}}, {Id: 1664, Properties: map[string]string{"instrument": "custom_head", "note": "13", "powered": "true"}}, {Id: 1665, Properties: map[string]string{"instrument": "custom_head", "note": "13", "powered": "false"}}, {Id: 1666, Properties: map[string]string{"instrument": "custom_head", "note": "14", "powered": "true"}}, {Id: 1667, Properties: map[string]string{"instrument": "custom_head", "note": "14", "powered": "false"}}, {Id: 1668, Properties: map[string]string{"instrument": "custom_head", "note": "15", "powered": "true"}}, {Id: 1669, Properties: map[string]string{"instrument": "custom_head", "note": "15", "powered": "false"}}, {Id: 1670, Properties: map[string]string{"instrument": "custom_head", "note": "16", "powered": "true"}}, {Id: 1671, Properties: map[string]string{"instrument": "custom_head", "note": "16", "powered": "false"}}, {Id: 1672, Properties: map[string]string{"instrument": "custom_head", "note": "17", "powered": "true"}}, {Id: 1673, Properties: map[string]string{"instrument": "custom_head", "note": "17", "powered": "false"}}, {Id: 1674, Properties: map[string]string{"instrument": "custom_head", "note": "18", "powered": "true"}}, {Id: 1675, Properties: map[string]string{"instrument": "custom_head", "note": "18", "powered": "false"}}, {Id: 1676, Properties: map[string]string{"instrument": "custom_head", "note": "19", "powered": "true"}}, {Id: 1677, Properties: map[string]string{"instrument": "custom_head", "note": "19", "powered": "false"}}, {Id: 1678, Properties: map[string]string{"instrument": "custom_head", "note": "20", "powered": "true"}}, {Id: 1679, Properties: map[string]string{"instrument": "custom_head", "note": "20", "powered": "false"}}, {Id: 1680, Properties: map[string]string{"instrument": "custom_head", "note": "21", "powered": "true"}}, {Id: 1681, Properties: map[string]string{"instrument": "custom_head", "note": "21", "powered": "false"}}, {Id: 1682, Properties: map[string]string{"instrument": "custom_head", "note": "22", "powered": "true"}}, {Id: 1683, Properties: map[string]string{"instrument": "custom_head", "note": "22", "powered": "false"}}, {Id: 1684, Properties: map[string]string{"instrument": "custom_head", "note": "23", "powered": "true"}}, {Id: 1685, Properties: map[string]string{"instrument": "custom_head", "note": "23", "powered": "false"}}, {Id: 1686, Properties: map[string]string{"instrument": "custom_head", "note": "24", "powered": "true"}}, {Id: 1687, Properties: map[string]string{"instrument": "custom_head", "note": "24", "powered": "false"}}}}, "minecraft:oak_button": {States: []{{Id: 8611, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 8612, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 8613, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 8614, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 8615, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 8616, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 8617, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 8618, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 8619, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 8620, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 8621, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 8622, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 8623, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 8624, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 8625, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 8626, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 8627, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 8628, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 8629, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 8630, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 8631, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 8632, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 8633, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 8634, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:oak_door": {States: []{{Id: 4590, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 4591, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 4592, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 4593, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 4594, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 4595, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 4596, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 4597, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 4598, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 4599, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 4600, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 4601, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 4602, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 4603, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 4604, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 4605, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 4606, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 4607, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 4608, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 4609, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 4610, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 4611, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 4612, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 4613, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 4614, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 4615, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 4616, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 4617, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 4618, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 4619, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 4620, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 4621, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 4622, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 4623, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 4624, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 4625, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 4626, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 4627, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 4628, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 4629, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 4630, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 4631, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 4632, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 4633, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 4634, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 4635, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 4636, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 4637, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 4638, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 4639, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 4640, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 4641, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 4642, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 4643, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 4644, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 4645, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 4646, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 4647, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 4648, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 4649, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 4650, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 4651, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 4652, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 4653, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:oak_fence": {States: []{{Id: 5817, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 5818, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 5819, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 5820, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 5821, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 5822, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 5823, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 5824, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 5825, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 5826, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 5827, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 5828, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 5829, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 5830, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 5831, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 5832, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 5833, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 5834, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 5835, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 5836, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 5837, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 5838, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 5839, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 5840, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 5841, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 5842, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 5843, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 5844, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 5845, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 5846, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 5847, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 5848, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:oak_fence_gate": {States: []{{Id: 6997, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 6998, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 6999, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 7000, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 7001, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 7002, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 7003, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 7004, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 7005, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 7006, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 7007, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 7008, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 7009, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 7010, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 7011, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 7012, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 7013, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 7014, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 7015, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 7016, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 7017, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 7018, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 7019, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 7020, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 7021, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 7022, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 7023, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 7024, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 7025, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 7026, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 7027, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 7028, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:oak_hanging_sign": {States: []{{Id: 4834, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 4835, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 4836, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 4837, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 4838, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 4839, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 4840, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 4841, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 4842, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 4843, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 4844, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 4845, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 4846, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 4847, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 4848, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 4849, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 4850, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 4851, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 4852, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 4853, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 4854, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 4855, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 4856, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 4857, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 4858, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 4859, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 4860, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 4861, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 4862, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 4863, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 4864, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 4865, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 4866, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 4867, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 4868, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 4869, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 4870, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 4871, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 4872, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 4873, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 4874, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 4875, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 4876, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 4877, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 4878, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 4879, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 4880, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 4881, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 4882, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 4883, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 4884, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 4885, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 4886, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 4887, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 4888, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 4889, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 4890, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 4891, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 4892, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 4893, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 4894, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 4895, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 4896, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 4897, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:oak_leaves": {States: []{{Id: 237, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "true"}}, {Id: 238, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "false"}}, {Id: 239, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "true"}}, {Id: 240, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "false"}}, {Id: 241, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "true"}}, {Id: 242, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "false"}}, {Id: 243, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "true"}}, {Id: 244, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "false"}}, {Id: 245, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "true"}}, {Id: 246, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "false"}}, {Id: 247, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "true"}}, {Id: 248, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "false"}}, {Id: 249, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "true"}}, {Id: 250, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "false"}}, {Id: 251, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "true"}}, {Id: 252, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "false"}}, {Id: 253, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "true"}}, {Id: 254, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "false"}}, {Id: 255, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "true"}}, {Id: 256, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "false"}}, {Id: 257, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "true"}}, {Id: 258, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "false"}}, {Id: 259, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "true"}}, {Id: 260, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "false"}}, {Id: 261, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "true"}}, {Id: 262, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "false"}}, {Id: 263, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "true"}}, {Id: 264, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "false"}}}}, "minecraft:oak_log": {States: []{{Id: 130, Properties: map[string]string{"axis": "x"}}, {Id: 131, Properties: map[string]string{"axis": "y"}}, {Id: 132, Properties: map[string]string{"axis": "z"}}}}, "minecraft:oak_planks": {States: []{{Id: 15, Properties: map[string]string{}}}}, "minecraft:oak_pressure_plate": {States: []{{Id: 5716, Properties: map[string]string{"powered": "true"}}, {Id: 5717, Properties: map[string]string{"powered": "false"}}}}, "minecraft:oak_sapling": {States: []{{Id: 25, Properties: map[string]string{"stage": "0"}}, {Id: 26, Properties: map[string]string{"stage": "1"}}}}, "minecraft:oak_sign": {States: []{{Id: 4302, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 4303, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 4304, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 4305, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 4306, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 4307, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 4308, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 4309, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 4310, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 4311, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 4312, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 4313, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 4314, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 4315, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 4316, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 4317, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 4318, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 4319, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 4320, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 4321, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 4322, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 4323, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 4324, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 4325, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 4326, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 4327, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 4328, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 4329, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 4330, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 4331, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 4332, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 4333, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:oak_slab": {States: []{{Id: 11162, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11163, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11164, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11165, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11166, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11167, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:oak_stairs": {States: []{{Id: 2874, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 2875, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 2876, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 2877, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 2878, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 2879, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 2880, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 2881, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 2882, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 2883, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 2884, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 2885, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 2886, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 2887, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 2888, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 2889, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 2890, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 2891, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 2892, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 2893, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 2894, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 2895, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 2896, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 2897, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 2898, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 2899, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 2900, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 2901, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 2902, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 2903, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 2904, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 2905, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 2906, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 2907, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 2908, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 2909, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 2910, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 2911, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 2912, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 2913, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 2914, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 2915, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 2916, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 2917, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 2918, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 2919, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 2920, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 2921, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 2922, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 2923, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 2924, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 2925, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 2926, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 2927, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 2928, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 2929, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 2930, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 2931, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 2932, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 2933, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 2934, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 2935, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 2936, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 2937, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 2938, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 2939, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 2940, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 2941, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 2942, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 2943, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 2944, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 2945, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 2946, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 2947, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 2948, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 2949, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 2950, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 2951, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 2952, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 2953, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:oak_trapdoor": {States: []{{Id: 5961, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 5962, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 5963, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 5964, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 5965, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 5966, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 5967, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 5968, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 5969, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 5970, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 5971, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 5972, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 5973, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 5974, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 5975, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 5976, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 5977, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 5978, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 5979, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 5980, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 5981, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 5982, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 5983, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 5984, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 5985, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 5986, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 5987, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 5988, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 5989, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 5990, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 5991, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 5992, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 5993, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 5994, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 5995, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 5996, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 5997, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 5998, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 5999, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6000, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6001, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6002, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6003, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6004, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6005, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6006, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6007, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6008, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6009, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6010, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6011, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6012, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6013, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6014, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6015, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6016, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6017, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6018, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6019, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6020, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6021, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6022, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6023, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6024, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:oak_wall_hanging_sign": {States: []{{Id: 5538, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5539, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5540, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5541, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5542, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5543, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5544, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5545, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:oak_wall_sign": {States: []{{Id: 4762, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 4763, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 4764, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 4765, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 4766, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 4767, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 4768, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 4769, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:oak_wood": {States: []{{Id: 189, Properties: map[string]string{"axis": "x"}}, {Id: 190, Properties: map[string]string{"axis": "y"}}, {Id: 191, Properties: map[string]string{"axis": "z"}}}}, "minecraft:observer": {States: []{{Id: 12550, Properties: map[string]string{"facing": "north", "powered": "true"}}, {Id: 12551, Properties: map[string]string{"facing": "north", "powered": "false"}}, {Id: 12552, Properties: map[string]string{"facing": "east", "powered": "true"}}, {Id: 12553, Properties: map[string]string{"facing": "east", "powered": "false"}}, {Id: 12554, Properties: map[string]string{"facing": "south", "powered": "true"}}, {Id: 12555, Properties: map[string]string{"facing": "south", "powered": "false"}}, {Id: 12556, Properties: map[string]string{"facing": "west", "powered": "true"}}, {Id: 12557, Properties: map[string]string{"facing": "west", "powered": "false"}}, {Id: 12558, Properties: map[string]string{"facing": "up", "powered": "true"}}, {Id: 12559, Properties: map[string]string{"facing": "up", "powered": "false"}}, {Id: 12560, Properties: map[string]string{"facing": "down", "powered": "true"}}, {Id: 12561, Properties: map[string]string{"facing": "down", "powered": "false"}}}}, "minecraft:obsidian": {States: []{{Id: 2354, Properties: map[string]string{}}}}, "minecraft:ochre_froglight": {States: []{{Id: 26563, Properties: map[string]string{"axis": "x"}}, {Id: 26564, Properties: map[string]string{"axis": "y"}}, {Id: 26565, Properties: map[string]string{"axis": "z"}}}}, "minecraft:orange_banner": {States: []{{Id: 10775, Properties: map[string]string{"rotation": "0"}}, {Id: 10776, Properties: map[string]string{"rotation": "1"}}, {Id: 10777, Properties: map[string]string{"rotation": "2"}}, {Id: 10778, Properties: map[string]string{"rotation": "3"}}, {Id: 10779, Properties: map[string]string{"rotation": "4"}}, {Id: 10780, Properties: map[string]string{"rotation": "5"}}, {Id: 10781, Properties: map[string]string{"rotation": "6"}}, {Id: 10782, Properties: map[string]string{"rotation": "7"}}, {Id: 10783, Properties: map[string]string{"rotation": "8"}}, {Id: 10784, Properties: map[string]string{"rotation": "9"}}, {Id: 10785, Properties: map[string]string{"rotation": "10"}}, {Id: 10786, Properties: map[string]string{"rotation": "11"}}, {Id: 10787, Properties: map[string]string{"rotation": "12"}}, {Id: 10788, Properties: map[string]string{"rotation": "13"}}, {Id: 10789, Properties: map[string]string{"rotation": "14"}}, {Id: 10790, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:orange_bed": {States: []{{Id: 1704, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1705, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1706, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1707, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1708, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1709, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1710, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1711, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1712, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1713, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1714, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1715, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1716, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1717, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1718, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1719, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:orange_candle": {States: []{{Id: 20757, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20758, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20759, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20760, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20761, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20762, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20763, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20764, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20765, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20766, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20767, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20768, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20769, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20770, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20771, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20772, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:orange_candle_cake": {States: []{{Id: 21001, Properties: map[string]string{"lit": "true"}}, {Id: 21002, Properties: map[string]string{"lit": "false"}}}}, "minecraft:orange_carpet": {States: []{{Id: 10729, Properties: map[string]string{}}}}, "minecraft:orange_concrete": {States: []{{Id: 12729, Properties: map[string]string{}}}}, "minecraft:orange_concrete_powder": {States: []{{Id: 12745, Properties: map[string]string{}}}}, "minecraft:orange_glazed_terracotta": {States: []{{Id: 12668, Properties: map[string]string{"facing": "north"}}, {Id: 12669, Properties: map[string]string{"facing": "south"}}, {Id: 12670, Properties: map[string]string{"facing": "west"}}, {Id: 12671, Properties: map[string]string{"facing": "east"}}}}, "minecraft:orange_shulker_box": {States: []{{Id: 12574, Properties: map[string]string{"facing": "north"}}, {Id: 12575, Properties: map[string]string{"facing": "east"}}, {Id: 12576, Properties: map[string]string{"facing": "south"}}, {Id: 12577, Properties: map[string]string{"facing": "west"}}, {Id: 12578, Properties: map[string]string{"facing": "up"}}, {Id: 12579, Properties: map[string]string{"facing": "down"}}}}, "minecraft:orange_stained_glass": {States: []{{Id: 5946, Properties: map[string]string{}}}}, "minecraft:orange_stained_glass_pane": {States: []{{Id: 9404, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9405, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9406, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9407, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9408, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9409, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9410, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9411, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9412, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9413, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9414, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9415, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9416, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9417, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9418, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9419, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9420, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9421, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9422, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9423, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9424, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9425, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9426, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9427, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9428, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9429, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9430, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9431, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9432, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9433, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9434, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9435, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:orange_terracotta": {States: []{{Id: 9357, Properties: map[string]string{}}}}, "minecraft:orange_tulip": {States: []{{Id: 2082, Properties: map[string]string{}}}}, "minecraft:orange_wall_banner": {States: []{{Id: 11019, Properties: map[string]string{"facing": "north"}}, {Id: 11020, Properties: map[string]string{"facing": "south"}}, {Id: 11021, Properties: map[string]string{"facing": "west"}}, {Id: 11022, Properties: map[string]string{"facing": "east"}}}}, "minecraft:orange_wool": {States: []{{Id: 2048, Properties: map[string]string{}}}}, "minecraft:oxeye_daisy": {States: []{{Id: 2085, Properties: map[string]string{}}}}, "minecraft:oxidized_chiseled_copper": {States: []{{Id: 22948, Properties: map[string]string{}}}}, "minecraft:oxidized_copper": {States: []{{Id: 22941, Properties: map[string]string{}}}}, "minecraft:oxidized_copper_bulb": {States: []{{Id: 24704, Properties: map[string]string{"lit": "true", "powered": "true"}}, {Id: 24705, Properties: map[string]string{"lit": "true", "powered": "false"}}, {Id: 24706, Properties: map[string]string{"lit": "false", "powered": "true"}}, {Id: 24707, Properties: map[string]string{"lit": "false", "powered": "false"}}}}, "minecraft:oxidized_copper_door": {States: []{{Id: 23780, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23781, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23782, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23783, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23784, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23785, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23786, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23787, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23788, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23789, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23790, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23791, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23792, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23793, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23794, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23795, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23796, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23797, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23798, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23799, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23800, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23801, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23802, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23803, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23804, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23805, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23806, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23807, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23808, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23809, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23810, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23811, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23812, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23813, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23814, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23815, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23816, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23817, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23818, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23819, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23820, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23821, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23822, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23823, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23824, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23825, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23826, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23827, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23828, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23829, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23830, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23831, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23832, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23833, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23834, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23835, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23836, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23837, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23838, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23839, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23840, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23841, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23842, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23843, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:oxidized_copper_grate": {States: []{{Id: 24682, Properties: map[string]string{"waterlogged": "true"}}, {Id: 24683, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:oxidized_copper_trapdoor": {States: []{{Id: 24292, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24293, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24294, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24295, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24296, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24297, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24298, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24299, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24300, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24301, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24302, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24303, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24304, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24305, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24306, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24307, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24308, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24309, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24310, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24311, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24312, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24313, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24314, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24315, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24316, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24317, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24318, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24319, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24320, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24321, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24322, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24323, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24324, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24325, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24326, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24327, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24328, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24329, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24330, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24331, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24332, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24333, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24334, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24335, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24336, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24337, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24338, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24339, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24340, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24341, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24342, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24343, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24344, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24345, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24346, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24347, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24348, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24349, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24350, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24351, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24352, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24353, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24354, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24355, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:oxidized_cut_copper": {States: []{{Id: 22944, Properties: map[string]string{}}}}, "minecraft:oxidized_cut_copper_slab": {States: []{{Id: 23276, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 23277, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 23278, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 23279, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 23280, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 23281, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:oxidized_cut_copper_stairs": {States: []{{Id: 22956, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 22957, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 22958, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 22959, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 22960, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 22961, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 22962, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 22963, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 22964, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 22965, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 22966, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 22967, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 22968, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 22969, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 22970, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 22971, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 22972, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 22973, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 22974, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 22975, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 22976, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 22977, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 22978, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 22979, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 22980, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 22981, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 22982, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 22983, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 22984, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 22985, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 22986, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 22987, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 22988, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 22989, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 22990, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 22991, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 22992, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 22993, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 22994, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 22995, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 22996, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 22997, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 22998, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 22999, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23000, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23001, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23002, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23003, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23004, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23005, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23006, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23007, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23008, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23009, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23010, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23011, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23012, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23013, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23014, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23015, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23016, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23017, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23018, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23019, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23020, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23021, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23022, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23023, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23024, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23025, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23026, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23027, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23028, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23029, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23030, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23031, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23032, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23033, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23034, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23035, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:packed_ice": {States: []{{Id: 10746, Properties: map[string]string{}}}}, "minecraft:packed_mud": {States: []{{Id: 6541, Properties: map[string]string{}}}}, "minecraft:pearlescent_froglight": {States: []{{Id: 26569, Properties: map[string]string{"axis": "x"}}, {Id: 26570, Properties: map[string]string{"axis": "y"}}, {Id: 26571, Properties: map[string]string{"axis": "z"}}}}, "minecraft:peony": {States: []{{Id: 10753, Properties: map[string]string{"half": "upper"}}, {Id: 10754, Properties: map[string]string{"half": "lower"}}}}, "minecraft:petrified_oak_slab": {States: []{{Id: 11246, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11247, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11248, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11249, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11250, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11251, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:piglin_head": {States: []{{Id: 9067, Properties: map[string]string{"powered": "true", "rotation": "0"}}, {Id: 9068, Properties: map[string]string{"powered": "true", "rotation": "1"}}, {Id: 9069, Properties: map[string]string{"powered": "true", "rotation": "2"}}, {Id: 9070, Properties: map[string]string{"powered": "true", "rotation": "3"}}, {Id: 9071, Properties: map[string]string{"powered": "true", "rotation": "4"}}, {Id: 9072, Properties: map[string]string{"powered": "true", "rotation": "5"}}, {Id: 9073, Properties: map[string]string{"powered": "true", "rotation": "6"}}, {Id: 9074, Properties: map[string]string{"powered": "true", "rotation": "7"}}, {Id: 9075, Properties: map[string]string{"powered": "true", "rotation": "8"}}, {Id: 9076, Properties: map[string]string{"powered": "true", "rotation": "9"}}, {Id: 9077, Properties: map[string]string{"powered": "true", "rotation": "10"}}, {Id: 9078, Properties: map[string]string{"powered": "true", "rotation": "11"}}, {Id: 9079, Properties: map[string]string{"powered": "true", "rotation": "12"}}, {Id: 9080, Properties: map[string]string{"powered": "true", "rotation": "13"}}, {Id: 9081, Properties: map[string]string{"powered": "true", "rotation": "14"}}, {Id: 9082, Properties: map[string]string{"powered": "true", "rotation": "15"}}, {Id: 9083, Properties: map[string]string{"powered": "false", "rotation": "0"}}, {Id: 9084, Properties: map[string]string{"powered": "false", "rotation": "1"}}, {Id: 9085, Properties: map[string]string{"powered": "false", "rotation": "2"}}, {Id: 9086, Properties: map[string]string{"powered": "false", "rotation": "3"}}, {Id: 9087, Properties: map[string]string{"powered": "false", "rotation": "4"}}, {Id: 9088, Properties: map[string]string{"powered": "false", "rotation": "5"}}, {Id: 9089, Properties: map[string]string{"powered": "false", "rotation": "6"}}, {Id: 9090, Properties: map[string]string{"powered": "false", "rotation": "7"}}, {Id: 9091, Properties: map[string]string{"powered": "false", "rotation": "8"}}, {Id: 9092, Properties: map[string]string{"powered": "false", "rotation": "9"}}, {Id: 9093, Properties: map[string]string{"powered": "false", "rotation": "10"}}, {Id: 9094, Properties: map[string]string{"powered": "false", "rotation": "11"}}, {Id: 9095, Properties: map[string]string{"powered": "false", "rotation": "12"}}, {Id: 9096, Properties: map[string]string{"powered": "false", "rotation": "13"}}, {Id: 9097, Properties: map[string]string{"powered": "false", "rotation": "14"}}, {Id: 9098, Properties: map[string]string{"powered": "false", "rotation": "15"}}}}, "minecraft:piglin_wall_head": {States: []{{Id: 9099, Properties: map[string]string{"facing": "north", "powered": "true"}}, {Id: 9100, Properties: map[string]string{"facing": "north", "powered": "false"}}, {Id: 9101, Properties: map[string]string{"facing": "south", "powered": "true"}}, {Id: 9102, Properties: map[string]string{"facing": "south", "powered": "false"}}, {Id: 9103, Properties: map[string]string{"facing": "west", "powered": "true"}}, {Id: 9104, Properties: map[string]string{"facing": "west", "powered": "false"}}, {Id: 9105, Properties: map[string]string{"facing": "east", "powered": "true"}}, {Id: 9106, Properties: map[string]string{"facing": "east", "powered": "false"}}}}, "minecraft:pink_banner": {States: []{{Id: 10855, Properties: map[string]string{"rotation": "0"}}, {Id: 10856, Properties: map[string]string{"rotation": "1"}}, {Id: 10857, Properties: map[string]string{"rotation": "2"}}, {Id: 10858, Properties: map[string]string{"rotation": "3"}}, {Id: 10859, Properties: map[string]string{"rotation": "4"}}, {Id: 10860, Properties: map[string]string{"rotation": "5"}}, {Id: 10861, Properties: map[string]string{"rotation": "6"}}, {Id: 10862, Properties: map[string]string{"rotation": "7"}}, {Id: 10863, Properties: map[string]string{"rotation": "8"}}, {Id: 10864, Properties: map[string]string{"rotation": "9"}}, {Id: 10865, Properties: map[string]string{"rotation": "10"}}, {Id: 10866, Properties: map[string]string{"rotation": "11"}}, {Id: 10867, Properties: map[string]string{"rotation": "12"}}, {Id: 10868, Properties: map[string]string{"rotation": "13"}}, {Id: 10869, Properties: map[string]string{"rotation": "14"}}, {Id: 10870, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:pink_bed": {States: []{{Id: 1784, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1785, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1786, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1787, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1788, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1789, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1790, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1791, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1792, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1793, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1794, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1795, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1796, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1797, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1798, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1799, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:pink_candle": {States: []{{Id: 20837, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20838, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20839, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20840, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20841, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20842, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20843, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20844, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20845, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20846, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20847, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20848, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20849, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20850, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20851, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20852, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:pink_candle_cake": {States: []{{Id: 21011, Properties: map[string]string{"lit": "true"}}, {Id: 21012, Properties: map[string]string{"lit": "false"}}}}, "minecraft:pink_carpet": {States: []{{Id: 10734, Properties: map[string]string{}}}}, "minecraft:pink_concrete": {States: []{{Id: 12734, Properties: map[string]string{}}}}, "minecraft:pink_concrete_powder": {States: []{{Id: 12750, Properties: map[string]string{}}}}, "minecraft:pink_glazed_terracotta": {States: []{{Id: 12688, Properties: map[string]string{"facing": "north"}}, {Id: 12689, Properties: map[string]string{"facing": "south"}}, {Id: 12690, Properties: map[string]string{"facing": "west"}}, {Id: 12691, Properties: map[string]string{"facing": "east"}}}}, "minecraft:pink_petals": {States: []{{Id: 24827, Properties: map[string]string{"facing": "north", "flower_amount": "1"}}, {Id: 24828, Properties: map[string]string{"facing": "north", "flower_amount": "2"}}, {Id: 24829, Properties: map[string]string{"facing": "north", "flower_amount": "3"}}, {Id: 24830, Properties: map[string]string{"facing": "north", "flower_amount": "4"}}, {Id: 24831, Properties: map[string]string{"facing": "south", "flower_amount": "1"}}, {Id: 24832, Properties: map[string]string{"facing": "south", "flower_amount": "2"}}, {Id: 24833, Properties: map[string]string{"facing": "south", "flower_amount": "3"}}, {Id: 24834, Properties: map[string]string{"facing": "south", "flower_amount": "4"}}, {Id: 24835, Properties: map[string]string{"facing": "west", "flower_amount": "1"}}, {Id: 24836, Properties: map[string]string{"facing": "west", "flower_amount": "2"}}, {Id: 24837, Properties: map[string]string{"facing": "west", "flower_amount": "3"}}, {Id: 24838, Properties: map[string]string{"facing": "west", "flower_amount": "4"}}, {Id: 24839, Properties: map[string]string{"facing": "east", "flower_amount": "1"}}, {Id: 24840, Properties: map[string]string{"facing": "east", "flower_amount": "2"}}, {Id: 24841, Properties: map[string]string{"facing": "east", "flower_amount": "3"}}, {Id: 24842, Properties: map[string]string{"facing": "east", "flower_amount": "4"}}}}, "minecraft:pink_shulker_box": {States: []{{Id: 12604, Properties: map[string]string{"facing": "north"}}, {Id: 12605, Properties: map[string]string{"facing": "east"}}, {Id: 12606, Properties: map[string]string{"facing": "south"}}, {Id: 12607, Properties: map[string]string{"facing": "west"}}, {Id: 12608, Properties: map[string]string{"facing": "up"}}, {Id: 12609, Properties: map[string]string{"facing": "down"}}}}, "minecraft:pink_stained_glass": {States: []{{Id: 5951, Properties: map[string]string{}}}}, "minecraft:pink_stained_glass_pane": {States: []{{Id: 9564, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9565, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9566, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9567, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9568, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9569, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9570, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9571, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9572, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9573, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9574, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9575, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9576, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9577, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9578, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9579, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9580, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9581, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9582, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9583, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9584, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9585, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9586, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9587, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9588, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9589, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9590, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9591, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9592, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9593, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9594, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9595, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:pink_terracotta": {States: []{{Id: 9362, Properties: map[string]string{}}}}, "minecraft:pink_tulip": {States: []{{Id: 2084, Properties: map[string]string{}}}}, "minecraft:pink_wall_banner": {States: []{{Id: 11039, Properties: map[string]string{"facing": "north"}}, {Id: 11040, Properties: map[string]string{"facing": "south"}}, {Id: 11041, Properties: map[string]string{"facing": "west"}}, {Id: 11042, Properties: map[string]string{"facing": "east"}}}}, "minecraft:pink_wool": {States: []{{Id: 2053, Properties: map[string]string{}}}}, "minecraft:piston": {States: []{{Id: 2011, Properties: map[string]string{"extended": "true", "facing": "north"}}, {Id: 2012, Properties: map[string]string{"extended": "true", "facing": "east"}}, {Id: 2013, Properties: map[string]string{"extended": "true", "facing": "south"}}, {Id: 2014, Properties: map[string]string{"extended": "true", "facing": "west"}}, {Id: 2015, Properties: map[string]string{"extended": "true", "facing": "up"}}, {Id: 2016, Properties: map[string]string{"extended": "true", "facing": "down"}}, {Id: 2017, Properties: map[string]string{"extended": "false", "facing": "north"}}, {Id: 2018, Properties: map[string]string{"extended": "false", "facing": "east"}}, {Id: 2019, Properties: map[string]string{"extended": "false", "facing": "south"}}, {Id: 2020, Properties: map[string]string{"extended": "false", "facing": "west"}}, {Id: 2021, Properties: map[string]string{"extended": "false", "facing": "up"}}, {Id: 2022, Properties: map[string]string{"extended": "false", "facing": "down"}}}}, "minecraft:piston_head": {States: []{{Id: 2023, Properties: map[string]string{"facing": "north", "short": "true", "type": "normal"}}, {Id: 2024, Properties: map[string]string{"facing": "north", "short": "true", "type": "sticky"}}, {Id: 2025, Properties: map[string]string{"facing": "north", "short": "false", "type": "normal"}}, {Id: 2026, Properties: map[string]string{"facing": "north", "short": "false", "type": "sticky"}}, {Id: 2027, Properties: map[string]string{"facing": "east", "short": "true", "type": "normal"}}, {Id: 2028, Properties: map[string]string{"facing": "east", "short": "true", "type": "sticky"}}, {Id: 2029, Properties: map[string]string{"facing": "east", "short": "false", "type": "normal"}}, {Id: 2030, Properties: map[string]string{"facing": "east", "short": "false", "type": "sticky"}}, {Id: 2031, Properties: map[string]string{"facing": "south", "short": "true", "type": "normal"}}, {Id: 2032, Properties: map[string]string{"facing": "south", "short": "true", "type": "sticky"}}, {Id: 2033, Properties: map[string]string{"facing": "south", "short": "false", "type": "normal"}}, {Id: 2034, Properties: map[string]string{"facing": "south", "short": "false", "type": "sticky"}}, {Id: 2035, Properties: map[string]string{"facing": "west", "short": "true", "type": "normal"}}, {Id: 2036, Properties: map[string]string{"facing": "west", "short": "true", "type": "sticky"}}, {Id: 2037, Properties: map[string]string{"facing": "west", "short": "false", "type": "normal"}}, {Id: 2038, Properties: map[string]string{"facing": "west", "short": "false", "type": "sticky"}}, {Id: 2039, Properties: map[string]string{"facing": "up", "short": "true", "type": "normal"}}, {Id: 2040, Properties: map[string]string{"facing": "up", "short": "true", "type": "sticky"}}, {Id: 2041, Properties: map[string]string{"facing": "up", "short": "false", "type": "normal"}}, {Id: 2042, Properties: map[string]string{"facing": "up", "short": "false", "type": "sticky"}}, {Id: 2043, Properties: map[string]string{"facing": "down", "short": "true", "type": "normal"}}, {Id: 2044, Properties: map[string]string{"facing": "down", "short": "true", "type": "sticky"}}, {Id: 2045, Properties: map[string]string{"facing": "down", "short": "false", "type": "normal"}}, {Id: 2046, Properties: map[string]string{"facing": "down", "short": "false", "type": "sticky"}}}}, "minecraft:pitcher_crop": {States: []{{Id: 12497, Properties: map[string]string{"age": "0", "half": "upper"}}, {Id: 12498, Properties: map[string]string{"age": "0", "half": "lower"}}, {Id: 12499, Properties: map[string]string{"age": "1", "half": "upper"}}, {Id: 12500, Properties: map[string]string{"age": "1", "half": "lower"}}, {Id: 12501, Properties: map[string]string{"age": "2", "half": "upper"}}, {Id: 12502, Properties: map[string]string{"age": "2", "half": "lower"}}, {Id: 12503, Properties: map[string]string{"age": "3", "half": "upper"}}, {Id: 12504, Properties: map[string]string{"age": "3", "half": "lower"}}, {Id: 12505, Properties: map[string]string{"age": "4", "half": "upper"}}, {Id: 12506, Properties: map[string]string{"age": "4", "half": "lower"}}}}, "minecraft:pitcher_plant": {States: []{{Id: 12507, Properties: map[string]string{"half": "upper"}}, {Id: 12508, Properties: map[string]string{"half": "lower"}}}}, "minecraft:player_head": {States: []{{Id: 8947, Properties: map[string]string{"powered": "true", "rotation": "0"}}, {Id: 8948, Properties: map[string]string{"powered": "true", "rotation": "1"}}, {Id: 8949, Properties: map[string]string{"powered": "true", "rotation": "2"}}, {Id: 8950, Properties: map[string]string{"powered": "true", "rotation": "3"}}, {Id: 8951, Properties: map[string]string{"powered": "true", "rotation": "4"}}, {Id: 8952, Properties: map[string]string{"powered": "true", "rotation": "5"}}, {Id: 8953, Properties: map[string]string{"powered": "true", "rotation": "6"}}, {Id: 8954, Properties: map[string]string{"powered": "true", "rotation": "7"}}, {Id: 8955, Properties: map[string]string{"powered": "true", "rotation": "8"}}, {Id: 8956, Properties: map[string]string{"powered": "true", "rotation": "9"}}, {Id: 8957, Properties: map[string]string{"powered": "true", "rotation": "10"}}, {Id: 8958, Properties: map[string]string{"powered": "true", "rotation": "11"}}, {Id: 8959, Properties: map[string]string{"powered": "true", "rotation": "12"}}, {Id: 8960, Properties: map[string]string{"powered": "true", "rotation": "13"}}, {Id: 8961, Properties: map[string]string{"powered": "true", "rotation": "14"}}, {Id: 8962, Properties: map[string]string{"powered": "true", "rotation": "15"}}, {Id: 8963, Properties: map[string]string{"powered": "false", "rotation": "0"}}, {Id: 8964, Properties: map[string]string{"powered": "false", "rotation": "1"}}, {Id: 8965, Properties: map[string]string{"powered": "false", "rotation": "2"}}, {Id: 8966, Properties: map[string]string{"powered": "false", "rotation": "3"}}, {Id: 8967, Properties: map[string]string{"powered": "false", "rotation": "4"}}, {Id: 8968, Properties: map[string]string{"powered": "false", "rotation": "5"}}, {Id: 8969, Properties: map[string]string{"powered": "false", "rotation": "6"}}, {Id: 8970, Properties: map[string]string{"powered": "false", "rotation": "7"}}, {Id: 8971, Properties: map[string]string{"powered": "false", "rotation": "8"}}, {Id: 8972, Properties: map[string]string{"powered": "false", "rotation": "9"}}, {Id: 8973, Properties: map[string]string{"powered": "false", "rotation": "10"}}, {Id: 8974, Properties: map[string]string{"powered": "false", "rotation": "11"}}, {Id: 8975, Properties: map[string]string{"powered": "false", "rotation": "12"}}, {Id: 8976, Properties: map[string]string{"powered": "false", "rotation": "13"}}, {Id: 8977, Properties: map[string]string{"powered": "false", "rotation": "14"}}, {Id: 8978, Properties: map[string]string{"powered": "false", "rotation": "15"}}}}, "minecraft:player_wall_head": {States: []{{Id: 8979, Properties: map[string]string{"facing": "north", "powered": "true"}}, {Id: 8980, Properties: map[string]string{"facing": "north", "powered": "false"}}, {Id: 8981, Properties: map[string]string{"facing": "south", "powered": "true"}}, {Id: 8982, Properties: map[string]string{"facing": "south", "powered": "false"}}, {Id: 8983, Properties: map[string]string{"facing": "west", "powered": "true"}}, {Id: 8984, Properties: map[string]string{"facing": "west", "powered": "false"}}, {Id: 8985, Properties: map[string]string{"facing": "east", "powered": "true"}}, {Id: 8986, Properties: map[string]string{"facing": "east", "powered": "false"}}}}, "minecraft:podzol": {States: []{{Id: 12, Properties: map[string]string{"snowy": "true"}}, {Id: 13, Properties: map[string]string{"snowy": "false"}}}}, "minecraft:pointed_dripstone": {States: []{{Id: 24748, Properties: map[string]string{"thickness": "tip_merge", "vertical_direction": "up", "waterlogged": "true"}}, {Id: 24749, Properties: map[string]string{"thickness": "tip_merge", "vertical_direction": "up", "waterlogged": "false"}}, {Id: 24750, Properties: map[string]string{"thickness": "tip_merge", "vertical_direction": "down", "waterlogged": "true"}}, {Id: 24751, Properties: map[string]string{"thickness": "tip_merge", "vertical_direction": "down", "waterlogged": "false"}}, {Id: 24752, Properties: map[string]string{"thickness": "tip", "vertical_direction": "up", "waterlogged": "true"}}, {Id: 24753, Properties: map[string]string{"thickness": "tip", "vertical_direction": "up", "waterlogged": "false"}}, {Id: 24754, Properties: map[string]string{"thickness": "tip", "vertical_direction": "down", "waterlogged": "true"}}, {Id: 24755, Properties: map[string]string{"thickness": "tip", "vertical_direction": "down", "waterlogged": "false"}}, {Id: 24756, Properties: map[string]string{"thickness": "frustum", "vertical_direction": "up", "waterlogged": "true"}}, {Id: 24757, Properties: map[string]string{"thickness": "frustum", "vertical_direction": "up", "waterlogged": "false"}}, {Id: 24758, Properties: map[string]string{"thickness": "frustum", "vertical_direction": "down", "waterlogged": "true"}}, {Id: 24759, Properties: map[string]string{"thickness": "frustum", "vertical_direction": "down", "waterlogged": "false"}}, {Id: 24760, Properties: map[string]string{"thickness": "middle", "vertical_direction": "up", "waterlogged": "true"}}, {Id: 24761, Properties: map[string]string{"thickness": "middle", "vertical_direction": "up", "waterlogged": "false"}}, {Id: 24762, Properties: map[string]string{"thickness": "middle", "vertical_direction": "down", "waterlogged": "true"}}, {Id: 24763, Properties: map[string]string{"thickness": "middle", "vertical_direction": "down", "waterlogged": "false"}}, {Id: 24764, Properties: map[string]string{"thickness": "base", "vertical_direction": "up", "waterlogged": "true"}}, {Id: 24765, Properties: map[string]string{"thickness": "base", "vertical_direction": "up", "waterlogged": "false"}}, {Id: 24766, Properties: map[string]string{"thickness": "base", "vertical_direction": "down", "waterlogged": "true"}}, {Id: 24767, Properties: map[string]string{"thickness": "base", "vertical_direction": "down", "waterlogged": "false"}}}}, "minecraft:polished_andesite": {States: []{{Id: 7, Properties: map[string]string{}}}}, "minecraft:polished_andesite_slab": {States: []{{Id: 14148, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14149, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14150, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14151, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14152, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14153, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:polished_andesite_stairs": {States: []{{Id: 13922, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13923, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13924, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13925, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13926, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13927, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13928, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13929, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13930, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13931, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13932, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13933, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13934, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13935, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13936, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13937, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13938, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13939, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13940, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13941, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13942, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13943, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13944, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13945, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13946, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13947, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13948, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13949, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13950, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13951, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13952, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13953, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13954, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13955, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13956, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13957, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13958, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13959, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13960, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13961, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13962, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13963, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13964, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13965, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13966, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13967, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13968, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13969, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13970, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13971, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13972, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13973, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13974, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13975, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13976, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13977, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13978, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13979, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13980, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13981, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13982, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13983, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13984, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13985, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13986, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13987, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13988, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13989, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13990, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13991, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13992, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13993, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13994, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13995, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13996, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13997, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13998, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13999, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 14000, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 14001, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:polished_basalt": {States: []{{Id: 5855, Properties: map[string]string{"axis": "x"}}, {Id: 5856, Properties: map[string]string{"axis": "y"}}, {Id: 5857, Properties: map[string]string{"axis": "z"}}}}, "minecraft:polished_blackstone": {States: []{{Id: 19871, Properties: map[string]string{}}}}, "minecraft:polished_blackstone_brick_slab": {States: []{{Id: 19875, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 19876, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 19877, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 19878, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 19879, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 19880, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:polished_blackstone_brick_stairs": {States: []{{Id: 19881, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19882, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19883, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19884, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19885, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19886, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19887, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19888, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19889, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19890, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19891, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19892, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19893, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19894, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19895, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19896, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19897, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19898, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19899, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19900, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19901, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19902, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19903, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19904, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19905, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19906, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19907, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19908, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19909, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19910, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19911, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19912, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19913, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19914, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19915, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19916, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19917, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19918, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19919, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19920, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19921, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19922, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19923, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19924, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19925, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19926, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19927, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19928, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19929, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19930, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19931, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19932, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19933, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19934, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19935, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19936, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19937, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19938, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19939, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19940, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19941, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19942, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19943, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19944, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19945, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19946, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19947, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19948, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19949, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19950, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19951, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19952, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19953, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19954, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19955, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19956, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19957, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19958, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19959, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19960, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:polished_blackstone_brick_wall": {States: []{{Id: 19961, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19962, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19963, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19964, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19965, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19966, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19967, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19968, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19969, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19970, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19971, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19972, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19973, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19974, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19975, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19976, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19977, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19978, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19979, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19980, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19981, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19982, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19983, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19984, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19985, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19986, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19987, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 19988, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 19989, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 19990, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 19991, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 19992, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 19993, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 19994, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 19995, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 19996, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 19997, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 19998, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 19999, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20000, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20001, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20002, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20003, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20004, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20005, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20006, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20007, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20008, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20009, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20010, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20011, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20012, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20013, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20014, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20015, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20016, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20017, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20018, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20019, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20020, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20021, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20022, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20023, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20024, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20025, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20026, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20027, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20028, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20029, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20030, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20031, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20032, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20033, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20034, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20035, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20036, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20037, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20038, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20039, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20040, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20041, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20042, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20043, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20044, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20045, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20046, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20047, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20048, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20049, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20050, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20051, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20052, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20053, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20054, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20055, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20056, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20057, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20058, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20059, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20060, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20061, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20062, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20063, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20064, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20065, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20066, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20067, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20068, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20069, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20070, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20071, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20072, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20073, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20074, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20075, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20076, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20077, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20078, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20079, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20080, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20081, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20082, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20083, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20084, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20085, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20086, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20087, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20088, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20089, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20090, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20091, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20092, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20093, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20094, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20095, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20096, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20097, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20098, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20099, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20100, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20101, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20102, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20103, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20104, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20105, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20106, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20107, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20108, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20109, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20110, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20111, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20112, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20113, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20114, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20115, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20116, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20117, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20118, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20119, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20120, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20121, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20122, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20123, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20124, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20125, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20126, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20127, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20128, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20129, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20130, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20131, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20132, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20133, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20134, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20135, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20136, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20137, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20138, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20139, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20140, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20141, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20142, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20143, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20144, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20145, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20146, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20147, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20148, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20149, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20150, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20151, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20152, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20153, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20154, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20155, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20156, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20157, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20158, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20159, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20160, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20161, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20162, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20163, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20164, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20165, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20166, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20167, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20168, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20169, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20170, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20171, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20172, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20173, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20174, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20175, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20176, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20177, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20178, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20179, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20180, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20181, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20182, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20183, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20184, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20185, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20186, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20187, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20188, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20189, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20190, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20191, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20192, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20193, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20194, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20195, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20196, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20197, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20198, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20199, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20200, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20201, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20202, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20203, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20204, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20205, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20206, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20207, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20208, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20209, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20210, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20211, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20212, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20213, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20214, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20215, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20216, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20217, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20218, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20219, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20220, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20221, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20222, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20223, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20224, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20225, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20226, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20227, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20228, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20229, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20230, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20231, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20232, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20233, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20234, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20235, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20236, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20237, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20238, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20239, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20240, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20241, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20242, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20243, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20244, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20245, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20246, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20247, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20248, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20249, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20250, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20251, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20252, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20253, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20254, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20255, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20256, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20257, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20258, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20259, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20260, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20261, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20262, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20263, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20264, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20265, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20266, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20267, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20268, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20269, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20270, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20271, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20272, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20273, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20274, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20275, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20276, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20277, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20278, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20279, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20280, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20281, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20282, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20283, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20284, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:polished_blackstone_bricks": {States: []{{Id: 19872, Properties: map[string]string{}}}}, "minecraft:polished_blackstone_button": {States: []{{Id: 20374, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 20375, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 20376, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 20377, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 20378, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 20379, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 20380, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 20381, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 20382, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 20383, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 20384, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 20385, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 20386, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 20387, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 20388, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 20389, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 20390, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 20391, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 20392, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 20393, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 20394, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 20395, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 20396, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 20397, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:polished_blackstone_pressure_plate": {States: []{{Id: 20372, Properties: map[string]string{"powered": "true"}}, {Id: 20373, Properties: map[string]string{"powered": "false"}}}}, "minecraft:polished_blackstone_slab": {States: []{{Id: 20366, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 20367, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 20368, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 20369, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 20370, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 20371, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:polished_blackstone_stairs": {States: []{{Id: 20286, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 20287, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 20288, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 20289, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 20290, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 20291, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 20292, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 20293, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 20294, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 20295, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 20296, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 20297, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 20298, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 20299, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 20300, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 20301, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 20302, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 20303, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 20304, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 20305, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 20306, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 20307, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 20308, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 20309, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 20310, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 20311, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 20312, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 20313, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 20314, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 20315, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 20316, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 20317, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 20318, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 20319, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 20320, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 20321, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 20322, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 20323, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 20324, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 20325, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 20326, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 20327, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 20328, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 20329, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 20330, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 20331, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 20332, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 20333, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 20334, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 20335, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 20336, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 20337, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 20338, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 20339, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 20340, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 20341, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 20342, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 20343, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 20344, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 20345, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 20346, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 20347, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 20348, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 20349, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 20350, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 20351, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 20352, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 20353, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 20354, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 20355, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 20356, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 20357, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 20358, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 20359, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 20360, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 20361, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 20362, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 20363, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 20364, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 20365, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:polished_blackstone_wall": {States: []{{Id: 20398, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20399, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20400, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20401, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20402, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20403, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20404, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20405, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20406, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20407, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20408, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20409, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20410, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20411, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20412, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20413, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20414, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20415, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20416, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20417, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20418, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20419, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20420, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20421, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20422, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20423, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20424, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20425, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20426, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20427, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20428, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20429, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20430, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20431, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20432, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20433, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20434, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20435, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20436, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20437, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20438, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20439, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20440, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20441, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20442, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20443, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20444, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20445, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20446, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20447, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20448, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20449, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20450, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20451, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20452, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20453, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20454, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20455, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20456, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20457, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20458, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20459, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20460, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20461, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20462, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20463, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20464, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20465, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20466, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20467, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20468, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20469, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20470, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20471, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20472, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20473, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20474, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20475, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20476, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20477, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20478, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20479, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20480, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20481, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20482, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20483, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20484, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20485, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20486, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20487, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20488, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20489, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20490, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20491, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20492, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20493, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20494, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20495, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20496, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20497, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20498, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20499, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20500, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20501, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20502, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20503, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20504, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20505, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20506, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20507, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20508, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20509, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20510, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20511, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20512, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20513, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20514, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20515, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20516, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20517, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20518, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20519, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20520, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20521, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20522, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20523, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20524, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20525, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20526, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20527, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20528, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20529, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20530, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20531, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20532, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20533, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20534, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20535, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20536, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20537, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20538, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20539, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20540, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20541, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20542, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20543, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20544, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20545, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20546, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20547, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20548, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20549, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20550, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20551, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20552, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20553, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20554, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20555, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20556, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20557, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20558, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20559, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20560, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20561, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20562, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20563, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20564, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20565, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20566, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20567, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20568, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20569, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20570, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20571, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20572, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20573, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20574, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20575, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20576, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20577, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20578, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20579, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20580, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20581, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20582, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20583, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20584, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20585, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20586, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20587, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20588, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20589, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20590, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20591, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20592, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20593, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20594, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20595, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20596, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20597, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20598, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20599, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20600, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20601, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20602, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20603, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20604, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20605, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20606, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20607, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20608, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20609, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20610, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20611, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20612, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20613, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20614, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20615, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20616, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20617, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20618, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20619, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20620, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20621, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20622, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20623, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20624, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20625, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20626, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20627, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20628, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20629, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20630, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20631, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20632, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20633, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20634, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20635, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20636, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20637, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20638, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20639, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20640, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20641, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20642, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20643, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20644, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20645, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20646, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20647, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20648, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20649, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20650, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20651, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20652, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20653, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20654, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20655, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20656, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20657, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20658, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20659, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20660, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20661, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20662, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20663, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20664, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20665, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20666, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20667, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20668, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20669, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20670, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20671, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20672, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20673, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20674, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20675, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20676, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20677, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20678, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20679, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20680, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20681, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20682, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20683, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20684, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20685, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20686, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20687, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20688, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20689, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20690, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20691, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20692, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20693, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20694, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20695, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20696, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20697, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20698, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20699, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20700, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20701, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20702, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20703, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20704, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20705, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20706, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20707, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20708, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20709, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 20710, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 20711, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 20712, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 20713, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 20714, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 20715, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 20716, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 20717, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 20718, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 20719, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 20720, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 20721, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:polished_deepslate": {States: []{{Id: 25318, Properties: map[string]string{}}}}, "minecraft:polished_deepslate_slab": {States: []{{Id: 25399, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 25400, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 25401, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 25402, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 25403, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 25404, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:polished_deepslate_stairs": {States: []{{Id: 25319, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 25320, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 25321, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25322, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25323, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25324, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25325, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25326, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25327, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25328, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25329, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 25330, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 25331, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25332, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25333, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25334, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25335, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25336, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25337, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25338, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25339, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 25340, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 25341, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25342, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25343, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25344, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25345, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25346, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25347, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25348, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25349, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 25350, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 25351, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25352, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25353, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25354, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25355, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25356, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25357, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25358, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25359, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 25360, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 25361, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25362, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25363, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25364, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25365, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25366, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25367, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25368, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25369, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 25370, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 25371, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25372, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25373, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25374, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25375, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25376, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25377, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25378, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25379, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 25380, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 25381, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25382, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25383, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25384, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25385, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25386, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25387, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25388, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 25389, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 25390, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 25391, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 25392, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 25393, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 25394, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 25395, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 25396, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 25397, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 25398, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:polished_deepslate_wall": {States: []{{Id: 25405, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25406, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25407, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25408, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25409, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25410, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25411, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25412, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25413, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25414, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25415, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25416, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25417, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25418, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25419, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25420, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25421, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25422, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25423, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25424, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25425, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25426, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25427, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25428, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25429, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25430, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25431, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25432, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25433, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25434, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25435, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25436, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25437, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25438, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25439, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25440, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25441, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25442, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25443, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25444, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25445, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25446, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25447, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25448, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25449, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25450, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25451, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25452, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25453, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25454, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25455, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25456, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25457, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25458, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25459, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25460, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25461, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25462, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25463, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25464, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25465, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25466, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25467, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25468, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25469, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25470, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25471, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25472, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25473, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25474, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25475, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25476, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25477, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25478, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25479, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25480, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25481, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25482, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25483, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25484, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25485, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25486, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25487, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25488, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25489, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25490, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25491, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25492, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25493, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25494, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25495, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25496, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25497, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25498, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25499, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25500, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25501, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25502, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25503, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25504, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25505, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25506, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25507, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25508, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25509, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25510, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25511, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25512, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25513, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25514, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25515, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25516, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25517, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25518, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25519, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25520, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25521, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25522, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25523, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25524, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25525, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25526, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25527, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25528, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25529, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25530, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25531, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25532, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25533, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25534, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25535, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25536, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25537, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25538, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25539, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25540, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25541, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25542, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25543, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25544, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25545, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25546, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25547, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25548, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25549, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25550, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25551, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25552, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25553, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25554, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25555, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25556, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25557, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25558, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25559, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25560, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25561, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25562, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25563, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25564, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25565, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25566, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25567, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25568, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25569, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25570, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25571, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25572, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25573, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25574, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25575, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25576, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25577, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25578, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25579, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25580, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25581, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25582, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25583, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25584, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25585, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25586, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25587, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25588, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25589, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25590, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25591, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25592, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25593, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25594, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25595, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25596, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25597, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25598, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25599, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25600, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25601, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25602, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25603, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25604, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25605, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25606, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25607, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25608, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25609, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25610, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25611, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25612, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25613, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25614, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25615, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25616, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25617, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25618, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25619, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25620, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25621, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25622, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25623, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25624, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25625, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25626, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25627, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25628, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25629, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25630, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25631, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25632, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25633, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25634, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25635, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25636, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25637, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25638, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25639, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25640, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25641, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25642, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25643, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25644, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25645, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25646, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25647, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25648, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25649, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25650, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25651, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25652, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25653, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25654, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25655, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25656, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25657, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25658, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25659, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25660, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25661, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25662, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25663, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25664, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25665, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25666, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25667, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25668, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25669, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25670, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25671, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25672, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25673, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25674, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25675, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25676, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25677, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25678, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25679, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25680, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25681, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25682, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25683, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25684, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25685, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25686, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25687, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25688, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25689, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25690, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25691, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25692, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25693, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25694, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25695, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25696, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25697, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25698, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25699, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25700, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25701, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25702, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25703, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25704, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25705, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25706, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25707, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25708, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25709, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25710, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25711, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25712, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25713, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25714, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25715, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25716, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 25717, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 25718, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 25719, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 25720, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 25721, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 25722, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 25723, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 25724, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 25725, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 25726, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 25727, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 25728, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:polished_diorite": {States: []{{Id: 5, Properties: map[string]string{}}}}, "minecraft:polished_diorite_slab": {States: []{{Id: 14100, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14101, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14102, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14103, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14104, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14105, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:polished_diorite_stairs": {States: []{{Id: 13202, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13203, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13204, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13205, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13206, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13207, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13208, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13209, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13210, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13211, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13212, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13213, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13214, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13215, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13216, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13217, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13218, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13219, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13220, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13221, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13222, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13223, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13224, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13225, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13226, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13227, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13228, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13229, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13230, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13231, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13232, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13233, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13234, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13235, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13236, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13237, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13238, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13239, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13240, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13241, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13242, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13243, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13244, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13245, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13246, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13247, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13248, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13249, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13250, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13251, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13252, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13253, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13254, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13255, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13256, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13257, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13258, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13259, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13260, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13261, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13262, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13263, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13264, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13265, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13266, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13267, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13268, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13269, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13270, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13271, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13272, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13273, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13274, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13275, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13276, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13277, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13278, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13279, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13280, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13281, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:polished_granite": {States: []{{Id: 3, Properties: map[string]string{}}}}, "minecraft:polished_granite_slab": {States: []{{Id: 14082, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14083, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14084, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14085, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14086, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14087, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:polished_granite_stairs": {States: []{{Id: 12962, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 12963, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 12964, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12965, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12966, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12967, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12968, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12969, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12970, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12971, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 12972, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 12973, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 12974, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12975, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12976, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12977, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12978, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12979, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12980, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12981, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 12982, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 12983, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 12984, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12985, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12986, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12987, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12988, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12989, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12990, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12991, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 12992, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 12993, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 12994, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12995, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12996, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12997, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12998, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12999, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13000, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13001, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13002, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13003, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13004, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13005, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13006, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13007, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13008, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13009, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13010, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13011, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13012, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13013, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13014, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13015, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13016, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13017, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13018, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13019, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13020, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13021, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13022, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13023, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13024, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13025, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13026, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13027, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13028, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13029, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13030, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13031, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13032, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13033, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13034, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13035, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13036, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13037, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13038, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13039, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13040, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13041, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:polished_tuff": {States: []{{Id: 21492, Properties: map[string]string{}}}}, "minecraft:polished_tuff_slab": {States: []{{Id: 21493, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 21494, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 21495, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 21496, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 21497, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 21498, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:polished_tuff_stairs": {States: []{{Id: 21499, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21500, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21501, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21502, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21503, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21504, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21505, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21506, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21507, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21508, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21509, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21510, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21511, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21512, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21513, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21514, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21515, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21516, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21517, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21518, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21519, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21520, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21521, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21522, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21523, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21524, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21525, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21526, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21527, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21528, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21529, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21530, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21531, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21532, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21533, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21534, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21535, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21536, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21537, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21538, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21539, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21540, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21541, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21542, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21543, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21544, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21545, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21546, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21547, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21548, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21549, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21550, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21551, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21552, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21553, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21554, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21555, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21556, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21557, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21558, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21559, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21560, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21561, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21562, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21563, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21564, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21565, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21566, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21567, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21568, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21569, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21570, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21571, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21572, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21573, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21574, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21575, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21576, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21577, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21578, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:polished_tuff_wall": {States: []{{Id: 21579, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21580, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21581, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21582, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21583, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21584, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21585, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21586, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21587, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21588, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21589, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21590, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21591, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21592, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21593, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21594, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21595, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21596, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21597, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21598, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21599, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21600, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21601, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21602, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21603, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21604, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21605, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21606, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21607, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21608, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21609, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21610, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21611, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21612, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21613, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21614, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21615, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21616, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21617, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21618, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21619, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21620, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21621, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21622, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21623, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21624, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21625, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21626, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21627, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21628, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21629, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21630, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21631, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21632, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21633, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21634, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21635, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21636, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21637, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21638, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21639, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21640, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21641, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21642, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21643, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21644, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21645, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21646, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21647, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21648, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21649, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21650, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21651, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21652, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21653, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21654, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21655, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21656, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21657, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21658, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21659, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21660, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21661, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21662, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21663, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21664, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21665, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21666, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21667, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21668, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21669, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21670, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21671, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21672, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21673, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21674, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21675, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21676, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21677, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21678, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21679, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21680, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21681, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21682, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21683, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21684, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21685, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21686, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21687, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21688, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21689, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21690, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21691, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21692, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21693, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21694, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21695, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21696, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21697, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21698, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21699, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21700, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21701, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21702, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21703, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21704, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21705, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21706, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21707, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21708, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21709, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21710, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21711, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21712, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21713, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21714, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21715, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21716, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21717, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21718, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21719, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21720, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21721, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21722, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21723, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21724, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21725, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21726, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21727, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21728, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21729, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21730, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21731, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21732, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21733, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21734, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21735, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21736, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21737, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21738, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21739, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21740, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21741, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21742, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21743, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21744, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21745, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21746, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21747, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21748, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21749, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21750, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21751, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21752, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21753, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21754, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21755, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21756, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21757, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21758, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21759, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21760, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21761, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21762, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21763, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21764, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21765, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21766, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21767, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21768, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21769, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21770, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21771, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21772, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21773, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21774, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21775, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21776, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21777, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21778, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21779, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21780, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21781, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21782, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21783, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21784, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21785, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21786, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21787, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21788, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21789, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21790, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21791, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21792, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21793, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21794, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21795, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21796, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21797, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21798, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21799, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21800, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21801, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21802, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21803, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21804, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21805, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21806, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21807, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21808, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21809, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21810, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21811, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21812, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21813, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21814, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21815, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21816, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21817, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21818, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21819, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21820, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21821, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21822, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21823, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21824, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21825, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21826, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21827, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21828, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21829, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21830, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21831, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21832, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21833, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21834, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21835, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21836, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21837, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21838, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21839, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21840, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21841, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21842, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21843, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21844, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21845, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21846, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21847, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21848, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21849, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21850, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21851, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21852, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21853, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21854, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21855, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21856, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21857, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21858, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21859, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21860, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21861, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21862, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21863, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21864, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21865, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21866, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21867, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21868, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21869, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21870, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21871, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21872, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21873, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21874, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21875, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21876, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21877, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21878, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21879, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21880, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21881, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21882, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21883, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21884, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21885, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21886, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21887, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21888, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21889, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21890, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21891, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21892, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21893, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21894, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21895, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21896, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21897, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21898, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21899, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21900, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21901, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21902, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:poppy": {States: []{{Id: 2077, Properties: map[string]string{}}}}, "minecraft:potatoes": {States: []{{Id: 8603, Properties: map[string]string{"age": "0"}}, {Id: 8604, Properties: map[string]string{"age": "1"}}, {Id: 8605, Properties: map[string]string{"age": "2"}}, {Id: 8606, Properties: map[string]string{"age": "3"}}, {Id: 8607, Properties: map[string]string{"age": "4"}}, {Id: 8608, Properties: map[string]string{"age": "5"}}, {Id: 8609, Properties: map[string]string{"age": "6"}}, {Id: 8610, Properties: map[string]string{"age": "7"}}}}, "minecraft:potted_acacia_sapling": {States: []{{Id: 8573, Properties: map[string]string{}}}}, "minecraft:potted_allium": {States: []{{Id: 8581, Properties: map[string]string{}}}}, "minecraft:potted_azalea_bush": {States: []{{Id: 26561, Properties: map[string]string{}}}}, "minecraft:potted_azure_bluet": {States: []{{Id: 8582, Properties: map[string]string{}}}}, "minecraft:potted_bamboo": {States: []{{Id: 12957, Properties: map[string]string{}}}}, "minecraft:potted_birch_sapling": {States: []{{Id: 8571, Properties: map[string]string{}}}}, "minecraft:potted_blue_orchid": {States: []{{Id: 8580, Properties: map[string]string{}}}}, "minecraft:potted_brown_mushroom": {States: []{{Id: 8592, Properties: map[string]string{}}}}, "minecraft:potted_cactus": {States: []{{Id: 8594, Properties: map[string]string{}}}}, "minecraft:potted_cherry_sapling": {States: []{{Id: 8574, Properties: map[string]string{}}}}, "minecraft:potted_cornflower": {States: []{{Id: 8588, Properties: map[string]string{}}}}, "minecraft:potted_crimson_fungus": {States: []{{Id: 19455, Properties: map[string]string{}}}}, "minecraft:potted_crimson_roots": {States: []{{Id: 19457, Properties: map[string]string{}}}}, "minecraft:potted_dandelion": {States: []{{Id: 8578, Properties: map[string]string{}}}}, "minecraft:potted_dark_oak_sapling": {States: []{{Id: 8575, Properties: map[string]string{}}}}, "minecraft:potted_dead_bush": {States: []{{Id: 8593, Properties: map[string]string{}}}}, "minecraft:potted_fern": {States: []{{Id: 8577, Properties: map[string]string{}}}}, "minecraft:potted_flowering_azalea_bush": {States: []{{Id: 26562, Properties: map[string]string{}}}}, "minecraft:potted_jungle_sapling": {States: []{{Id: 8572, Properties: map[string]string{}}}}, "minecraft:potted_lily_of_the_valley": {States: []{{Id: 8589, Properties: map[string]string{}}}}, "minecraft:potted_mangrove_propagule": {States: []{{Id: 8576, Properties: map[string]string{}}}}, "minecraft:potted_oak_sapling": {States: []{{Id: 8569, Properties: map[string]string{}}}}, "minecraft:potted_orange_tulip": {States: []{{Id: 8584, Properties: map[string]string{}}}}, "minecraft:potted_oxeye_daisy": {States: []{{Id: 8587, Properties: map[string]string{}}}}, "minecraft:potted_pink_tulip": {States: []{{Id: 8586, Properties: map[string]string{}}}}, "minecraft:potted_poppy": {States: []{{Id: 8579, Properties: map[string]string{}}}}, "minecraft:potted_red_mushroom": {States: []{{Id: 8591, Properties: map[string]string{}}}}, "minecraft:potted_red_tulip": {States: []{{Id: 8583, Properties: map[string]string{}}}}, "minecraft:potted_spruce_sapling": {States: []{{Id: 8570, Properties: map[string]string{}}}}, "minecraft:potted_torchflower": {States: []{{Id: 8568, Properties: map[string]string{}}}}, "minecraft:potted_warped_fungus": {States: []{{Id: 19456, Properties: map[string]string{}}}}, "minecraft:potted_warped_roots": {States: []{{Id: 19458, Properties: map[string]string{}}}}, "minecraft:potted_white_tulip": {States: []{{Id: 8585, Properties: map[string]string{}}}}, "minecraft:potted_wither_rose": {States: []{{Id: 8590, Properties: map[string]string{}}}}, "minecraft:powder_snow": {States: []{{Id: 22318, Properties: map[string]string{}}}}, "minecraft:powder_snow_cauldron": {States: []{{Id: 7403, Properties: map[string]string{"level": "1"}}, {Id: 7404, Properties: map[string]string{"level": "2"}}, {Id: 7405, Properties: map[string]string{"level": "3"}}}}, "minecraft:powered_rail": {States: []{{Id: 1944, Properties: map[string]string{"powered": "true", "shape": "north_south", "waterlogged": "true"}}, {Id: 1945, Properties: map[string]string{"powered": "true", "shape": "north_south", "waterlogged": "false"}}, {Id: 1946, Properties: map[string]string{"powered": "true", "shape": "east_west", "waterlogged": "true"}}, {Id: 1947, Properties: map[string]string{"powered": "true", "shape": "east_west", "waterlogged": "false"}}, {Id: 1948, Properties: map[string]string{"powered": "true", "shape": "ascending_east", "waterlogged": "true"}}, {Id: 1949, Properties: map[string]string{"powered": "true", "shape": "ascending_east", "waterlogged": "false"}}, {Id: 1950, Properties: map[string]string{"powered": "true", "shape": "ascending_west", "waterlogged": "true"}}, {Id: 1951, Properties: map[string]string{"powered": "true", "shape": "ascending_west", "waterlogged": "false"}}, {Id: 1952, Properties: map[string]string{"powered": "true", "shape": "ascending_north", "waterlogged": "true"}}, {Id: 1953, Properties: map[string]string{"powered": "true", "shape": "ascending_north", "waterlogged": "false"}}, {Id: 1954, Properties: map[string]string{"powered": "true", "shape": "ascending_south", "waterlogged": "true"}}, {Id: 1955, Properties: map[string]string{"powered": "true", "shape": "ascending_south", "waterlogged": "false"}}, {Id: 1956, Properties: map[string]string{"powered": "false", "shape": "north_south", "waterlogged": "true"}}, {Id: 1957, Properties: map[string]string{"powered": "false", "shape": "north_south", "waterlogged": "false"}}, {Id: 1958, Properties: map[string]string{"powered": "false", "shape": "east_west", "waterlogged": "true"}}, {Id: 1959, Properties: map[string]string{"powered": "false", "shape": "east_west", "waterlogged": "false"}}, {Id: 1960, Properties: map[string]string{"powered": "false", "shape": "ascending_east", "waterlogged": "true"}}, {Id: 1961, Properties: map[string]string{"powered": "false", "shape": "ascending_east", "waterlogged": "false"}}, {Id: 1962, Properties: map[string]string{"powered": "false", "shape": "ascending_west", "waterlogged": "true"}}, {Id: 1963, Properties: map[string]string{"powered": "false", "shape": "ascending_west", "waterlogged": "false"}}, {Id: 1964, Properties: map[string]string{"powered": "false", "shape": "ascending_north", "waterlogged": "true"}}, {Id: 1965, Properties: map[string]string{"powered": "false", "shape": "ascending_north", "waterlogged": "false"}}, {Id: 1966, Properties: map[string]string{"powered": "false", "shape": "ascending_south", "waterlogged": "true"}}, {Id: 1967, Properties: map[string]string{"powered": "false", "shape": "ascending_south", "waterlogged": "false"}}}}, "minecraft:prismarine": {States: []{{Id: 10463, Properties: map[string]string{}}}}, "minecraft:prismarine_brick_slab": {States: []{{Id: 10712, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 10713, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 10714, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 10715, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 10716, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 10717, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:prismarine_brick_stairs": {States: []{{Id: 10546, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10547, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10548, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10549, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10550, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10551, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10552, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10553, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10554, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10555, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10556, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10557, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10558, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10559, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10560, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10561, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10562, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10563, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10564, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10565, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10566, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10567, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10568, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10569, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10570, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10571, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10572, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10573, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10574, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10575, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10576, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10577, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10578, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10579, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10580, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10581, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10582, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10583, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10584, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10585, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10586, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10587, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10588, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10589, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10590, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10591, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10592, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10593, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10594, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10595, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10596, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10597, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10598, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10599, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10600, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10601, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10602, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10603, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10604, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10605, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10606, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10607, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10608, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10609, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10610, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10611, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10612, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10613, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10614, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10615, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10616, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10617, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10618, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10619, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10620, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10621, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10622, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10623, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10624, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10625, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:prismarine_bricks": {States: []{{Id: 10464, Properties: map[string]string{}}}}, "minecraft:prismarine_slab": {States: []{{Id: 10706, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 10707, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 10708, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 10709, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 10710, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 10711, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:prismarine_stairs": {States: []{{Id: 10466, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10467, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10468, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10469, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10470, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10471, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10472, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10473, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10474, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10475, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10476, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10477, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10478, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10479, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10480, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10481, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10482, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10483, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10484, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10485, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10486, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10487, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10488, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10489, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10490, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10491, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10492, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10493, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10494, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10495, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10496, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10497, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10498, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10499, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10500, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10501, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10502, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10503, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10504, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10505, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10506, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10507, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10508, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10509, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10510, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10511, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10512, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10513, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10514, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10515, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10516, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10517, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10518, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10519, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10520, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10521, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10522, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10523, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10524, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10525, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10526, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 10527, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 10528, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10529, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10530, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10531, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10532, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10533, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10534, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10535, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 10536, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 10537, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 10538, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 10539, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 10540, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 10541, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 10542, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 10543, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 10544, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 10545, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:prismarine_wall": {States: []{{Id: 14484, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14485, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14486, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14487, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14488, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14489, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14490, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14491, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14492, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14493, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14494, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14495, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14496, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14497, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14498, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14499, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14500, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14501, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14502, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14503, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14504, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14505, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14506, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14507, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14508, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14509, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14510, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14511, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14512, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14513, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14514, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14515, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14516, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14517, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14518, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14519, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14520, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14521, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14522, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14523, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14524, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14525, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14526, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14527, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14528, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14529, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14530, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14531, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14532, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14533, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14534, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14535, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14536, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14537, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14538, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14539, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14540, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14541, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14542, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14543, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14544, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14545, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14546, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14547, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14548, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14549, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14550, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14551, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14552, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14553, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14554, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14555, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14556, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14557, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14558, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14559, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14560, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14561, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14562, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14563, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14564, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14565, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14566, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14567, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14568, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14569, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14570, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14571, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14572, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14573, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14574, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14575, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14576, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14577, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14578, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14579, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14580, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14581, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14582, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14583, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14584, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14585, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14586, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14587, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14588, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14589, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14590, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14591, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14592, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14593, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14594, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14595, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14596, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14597, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14598, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14599, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14600, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14601, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14602, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14603, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14604, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14605, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14606, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14607, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14608, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14609, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14610, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14611, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14612, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14613, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14614, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14615, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14616, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14617, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14618, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14619, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14620, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14621, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14622, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14623, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14624, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14625, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14626, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14627, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14628, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14629, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14630, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14631, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14632, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14633, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14634, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14635, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14636, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14637, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14638, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14639, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14640, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14641, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14642, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14643, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14644, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14645, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14646, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14647, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14648, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14649, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14650, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14651, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14652, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14653, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14654, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14655, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14656, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14657, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14658, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14659, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14660, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14661, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14662, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14663, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14664, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14665, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14666, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14667, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14668, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14669, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14670, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14671, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14672, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14673, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14674, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14675, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14676, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14677, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14678, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14679, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14680, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14681, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14682, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14683, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14684, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14685, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14686, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14687, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14688, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14689, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14690, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14691, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14692, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14693, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14694, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14695, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14696, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14697, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14698, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14699, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14700, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14701, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14702, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14703, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14704, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14705, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14706, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14707, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14708, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14709, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14710, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14711, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14712, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14713, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14714, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14715, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14716, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14717, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14718, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14719, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14720, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14721, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14722, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14723, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14724, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14725, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14726, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14727, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14728, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14729, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14730, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14731, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14732, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14733, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14734, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14735, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14736, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14737, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14738, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14739, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14740, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14741, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14742, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14743, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14744, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14745, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14746, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14747, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14748, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14749, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14750, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14751, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14752, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14753, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14754, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14755, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14756, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14757, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14758, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14759, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14760, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14761, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14762, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14763, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14764, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14765, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14766, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14767, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14768, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14769, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14770, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14771, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14772, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14773, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14774, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14775, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14776, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14777, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14778, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14779, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14780, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14781, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14782, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14783, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14784, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14785, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14786, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14787, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14788, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14789, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14790, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14791, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14792, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14793, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14794, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14795, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14796, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14797, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14798, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14799, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14800, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14801, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14802, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14803, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14804, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14805, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14806, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14807, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:pumpkin": {States: []{{Id: 6811, Properties: map[string]string{}}}}, "minecraft:pumpkin_stem": {States: []{{Id: 6821, Properties: map[string]string{"age": "0"}}, {Id: 6822, Properties: map[string]string{"age": "1"}}, {Id: 6823, Properties: map[string]string{"age": "2"}}, {Id: 6824, Properties: map[string]string{"age": "3"}}, {Id: 6825, Properties: map[string]string{"age": "4"}}, {Id: 6826, Properties: map[string]string{"age": "5"}}, {Id: 6827, Properties: map[string]string{"age": "6"}}, {Id: 6828, Properties: map[string]string{"age": "7"}}}}, "minecraft:purple_banner": {States: []{{Id: 10919, Properties: map[string]string{"rotation": "0"}}, {Id: 10920, Properties: map[string]string{"rotation": "1"}}, {Id: 10921, Properties: map[string]string{"rotation": "2"}}, {Id: 10922, Properties: map[string]string{"rotation": "3"}}, {Id: 10923, Properties: map[string]string{"rotation": "4"}}, {Id: 10924, Properties: map[string]string{"rotation": "5"}}, {Id: 10925, Properties: map[string]string{"rotation": "6"}}, {Id: 10926, Properties: map[string]string{"rotation": "7"}}, {Id: 10927, Properties: map[string]string{"rotation": "8"}}, {Id: 10928, Properties: map[string]string{"rotation": "9"}}, {Id: 10929, Properties: map[string]string{"rotation": "10"}}, {Id: 10930, Properties: map[string]string{"rotation": "11"}}, {Id: 10931, Properties: map[string]string{"rotation": "12"}}, {Id: 10932, Properties: map[string]string{"rotation": "13"}}, {Id: 10933, Properties: map[string]string{"rotation": "14"}}, {Id: 10934, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:purple_bed": {States: []{{Id: 1848, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1849, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1850, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1851, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1852, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1853, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1854, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1855, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1856, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1857, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1858, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1859, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1860, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1861, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1862, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1863, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:purple_candle": {States: []{{Id: 20901, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20902, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20903, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20904, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20905, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20906, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20907, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20908, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20909, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20910, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20911, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20912, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20913, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20914, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20915, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20916, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:purple_candle_cake": {States: []{{Id: 21019, Properties: map[string]string{"lit": "true"}}, {Id: 21020, Properties: map[string]string{"lit": "false"}}}}, "minecraft:purple_carpet": {States: []{{Id: 10738, Properties: map[string]string{}}}}, "minecraft:purple_concrete": {States: []{{Id: 12738, Properties: map[string]string{}}}}, "minecraft:purple_concrete_powder": {States: []{{Id: 12754, Properties: map[string]string{}}}}, "minecraft:purple_glazed_terracotta": {States: []{{Id: 12704, Properties: map[string]string{"facing": "north"}}, {Id: 12705, Properties: map[string]string{"facing": "south"}}, {Id: 12706, Properties: map[string]string{"facing": "west"}}, {Id: 12707, Properties: map[string]string{"facing": "east"}}}}, "minecraft:purple_shulker_box": {States: []{{Id: 12628, Properties: map[string]string{"facing": "north"}}, {Id: 12629, Properties: map[string]string{"facing": "east"}}, {Id: 12630, Properties: map[string]string{"facing": "south"}}, {Id: 12631, Properties: map[string]string{"facing": "west"}}, {Id: 12632, Properties: map[string]string{"facing": "up"}}, {Id: 12633, Properties: map[string]string{"facing": "down"}}}}, "minecraft:purple_stained_glass": {States: []{{Id: 5955, Properties: map[string]string{}}}}, "minecraft:purple_stained_glass_pane": {States: []{{Id: 9692, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9693, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9694, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9695, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9696, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9697, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9698, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9699, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9700, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9701, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9702, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9703, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9704, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9705, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9706, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9707, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9708, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9709, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9710, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9711, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9712, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9713, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9714, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9715, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9716, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9717, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9718, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9719, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9720, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9721, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9722, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9723, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:purple_terracotta": {States: []{{Id: 9366, Properties: map[string]string{}}}}, "minecraft:purple_wall_banner": {States: []{{Id: 11055, Properties: map[string]string{"facing": "north"}}, {Id: 11056, Properties: map[string]string{"facing": "south"}}, {Id: 11057, Properties: map[string]string{"facing": "west"}}, {Id: 11058, Properties: map[string]string{"facing": "east"}}}}, "minecraft:purple_wool": {States: []{{Id: 2057, Properties: map[string]string{}}}}, "minecraft:purpur_block": {States: []{{Id: 12410, Properties: map[string]string{}}}}, "minecraft:purpur_pillar": {States: []{{Id: 12411, Properties: map[string]string{"axis": "x"}}, {Id: 12412, Properties: map[string]string{"axis": "y"}}, {Id: 12413, Properties: map[string]string{"axis": "z"}}}}, "minecraft:purpur_slab": {States: []{{Id: 11300, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11301, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11302, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11303, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11304, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11305, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:purpur_stairs": {States: []{{Id: 12414, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 12415, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 12416, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12417, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12418, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12419, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12420, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12421, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12422, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12423, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 12424, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 12425, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 12426, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12427, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12428, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12429, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12430, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12431, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12432, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12433, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 12434, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 12435, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 12436, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12437, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12438, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12439, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12440, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12441, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12442, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12443, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 12444, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 12445, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 12446, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12447, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12448, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12449, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12450, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12451, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12452, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12453, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 12454, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 12455, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 12456, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12457, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12458, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12459, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12460, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12461, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12462, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12463, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 12464, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 12465, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 12466, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12467, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12468, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12469, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12470, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12471, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12472, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12473, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 12474, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 12475, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 12476, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12477, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12478, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12479, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12480, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12481, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12482, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12483, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 12484, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 12485, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 12486, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 12487, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 12488, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 12489, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 12490, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 12491, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 12492, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 12493, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:quartz_block": {States: []{{Id: 9235, Properties: map[string]string{}}}}, "minecraft:quartz_bricks": {States: []{{Id: 20724, Properties: map[string]string{}}}}, "minecraft:quartz_pillar": {States: []{{Id: 9237, Properties: map[string]string{"axis": "x"}}, {Id: 9238, Properties: map[string]string{"axis": "y"}}, {Id: 9239, Properties: map[string]string{"axis": "z"}}}}, "minecraft:quartz_slab": {States: []{{Id: 11282, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11283, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11284, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11285, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11286, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11287, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:quartz_stairs": {States: []{{Id: 9240, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 9241, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 9242, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9243, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9244, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9245, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9246, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9247, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9248, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9249, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9250, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 9251, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 9252, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9253, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9254, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9255, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9256, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9257, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9258, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9259, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9260, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 9261, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 9262, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9263, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9264, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9265, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9266, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9267, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9268, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9269, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9270, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 9271, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 9272, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9273, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9274, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9275, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9276, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9277, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9278, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9279, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9280, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 9281, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 9282, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9283, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9284, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9285, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9286, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9287, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9288, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9289, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9290, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 9291, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 9292, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9293, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9294, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9295, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9296, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9297, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9298, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9299, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9300, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 9301, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 9302, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9303, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9304, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9305, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9306, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9307, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9308, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9309, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 9310, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 9311, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 9312, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 9313, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 9314, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 9315, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 9316, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 9317, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 9318, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 9319, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:rail": {States: []{{Id: 4662, Properties: map[string]string{"shape": "north_south", "waterlogged": "true"}}, {Id: 4663, Properties: map[string]string{"shape": "north_south", "waterlogged": "false"}}, {Id: 4664, Properties: map[string]string{"shape": "east_west", "waterlogged": "true"}}, {Id: 4665, Properties: map[string]string{"shape": "east_west", "waterlogged": "false"}}, {Id: 4666, Properties: map[string]string{"shape": "ascending_east", "waterlogged": "true"}}, {Id: 4667, Properties: map[string]string{"shape": "ascending_east", "waterlogged": "false"}}, {Id: 4668, Properties: map[string]string{"shape": "ascending_west", "waterlogged": "true"}}, {Id: 4669, Properties: map[string]string{"shape": "ascending_west", "waterlogged": "false"}}, {Id: 4670, Properties: map[string]string{"shape": "ascending_north", "waterlogged": "true"}}, {Id: 4671, Properties: map[string]string{"shape": "ascending_north", "waterlogged": "false"}}, {Id: 4672, Properties: map[string]string{"shape": "ascending_south", "waterlogged": "true"}}, {Id: 4673, Properties: map[string]string{"shape": "ascending_south", "waterlogged": "false"}}, {Id: 4674, Properties: map[string]string{"shape": "south_east", "waterlogged": "true"}}, {Id: 4675, Properties: map[string]string{"shape": "south_east", "waterlogged": "false"}}, {Id: 4676, Properties: map[string]string{"shape": "south_west", "waterlogged": "true"}}, {Id: 4677, Properties: map[string]string{"shape": "south_west", "waterlogged": "false"}}, {Id: 4678, Properties: map[string]string{"shape": "north_west", "waterlogged": "true"}}, {Id: 4679, Properties: map[string]string{"shape": "north_west", "waterlogged": "false"}}, {Id: 4680, Properties: map[string]string{"shape": "north_east", "waterlogged": "true"}}, {Id: 4681, Properties: map[string]string{"shape": "north_east", "waterlogged": "false"}}}}, "minecraft:raw_copper_block": {States: []{{Id: 26559, Properties: map[string]string{}}}}, "minecraft:raw_gold_block": {States: []{{Id: 26560, Properties: map[string]string{}}}}, "minecraft:raw_iron_block": {States: []{{Id: 26558, Properties: map[string]string{}}}}, "minecraft:red_banner": {States: []{{Id: 10983, Properties: map[string]string{"rotation": "0"}}, {Id: 10984, Properties: map[string]string{"rotation": "1"}}, {Id: 10985, Properties: map[string]string{"rotation": "2"}}, {Id: 10986, Properties: map[string]string{"rotation": "3"}}, {Id: 10987, Properties: map[string]string{"rotation": "4"}}, {Id: 10988, Properties: map[string]string{"rotation": "5"}}, {Id: 10989, Properties: map[string]string{"rotation": "6"}}, {Id: 10990, Properties: map[string]string{"rotation": "7"}}, {Id: 10991, Properties: map[string]string{"rotation": "8"}}, {Id: 10992, Properties: map[string]string{"rotation": "9"}}, {Id: 10993, Properties: map[string]string{"rotation": "10"}}, {Id: 10994, Properties: map[string]string{"rotation": "11"}}, {Id: 10995, Properties: map[string]string{"rotation": "12"}}, {Id: 10996, Properties: map[string]string{"rotation": "13"}}, {Id: 10997, Properties: map[string]string{"rotation": "14"}}, {Id: 10998, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:red_bed": {States: []{{Id: 1912, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1913, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1914, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1915, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1916, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1917, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1918, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1919, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1920, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1921, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1922, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1923, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1924, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1925, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1926, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1927, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:red_candle": {States: []{{Id: 20965, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20966, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20967, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20968, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20969, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20970, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20971, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20972, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20973, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20974, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20975, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20976, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20977, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20978, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20979, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20980, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:red_candle_cake": {States: []{{Id: 21027, Properties: map[string]string{"lit": "true"}}, {Id: 21028, Properties: map[string]string{"lit": "false"}}}}, "minecraft:red_carpet": {States: []{{Id: 10742, Properties: map[string]string{}}}}, "minecraft:red_concrete": {States: []{{Id: 12742, Properties: map[string]string{}}}}, "minecraft:red_concrete_powder": {States: []{{Id: 12758, Properties: map[string]string{}}}}, "minecraft:red_glazed_terracotta": {States: []{{Id: 12720, Properties: map[string]string{"facing": "north"}}, {Id: 12721, Properties: map[string]string{"facing": "south"}}, {Id: 12722, Properties: map[string]string{"facing": "west"}}, {Id: 12723, Properties: map[string]string{"facing": "east"}}}}, "minecraft:red_mushroom": {States: []{{Id: 2090, Properties: map[string]string{}}}}, "minecraft:red_mushroom_block": {States: []{{Id: 6613, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6614, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6615, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6616, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6617, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6618, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6619, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6620, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6621, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6622, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6623, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6624, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6625, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6626, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6627, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6628, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 6629, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6630, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6631, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6632, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6633, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6634, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6635, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6636, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6637, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6638, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6639, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6640, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6641, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6642, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6643, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6644, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 6645, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6646, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6647, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6648, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6649, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6650, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6651, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6652, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6653, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6654, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6655, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6656, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6657, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6658, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6659, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6660, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 6661, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6662, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6663, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6664, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6665, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6666, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6667, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6668, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6669, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6670, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6671, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6672, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6673, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6674, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6675, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6676, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}}}, "minecraft:red_nether_brick_slab": {States: []{{Id: 14142, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14143, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14144, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14145, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14146, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14147, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:red_nether_brick_stairs": {States: []{{Id: 13842, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13843, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13844, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13845, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13846, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13847, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13848, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13849, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13850, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13851, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13852, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13853, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13854, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13855, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13856, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13857, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13858, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13859, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13860, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13861, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13862, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13863, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13864, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13865, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13866, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13867, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13868, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13869, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13870, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13871, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13872, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13873, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13874, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13875, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13876, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13877, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13878, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13879, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13880, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13881, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13882, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13883, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13884, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13885, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13886, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13887, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13888, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13889, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13890, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13891, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13892, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13893, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13894, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13895, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13896, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13897, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13898, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13899, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13900, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13901, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13902, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13903, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13904, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13905, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13906, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13907, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13908, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13909, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13910, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13911, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13912, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13913, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13914, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13915, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13916, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13917, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13918, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13919, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13920, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13921, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:red_nether_brick_wall": {States: []{{Id: 17076, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17077, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17078, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17079, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17080, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17081, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17082, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17083, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17084, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17085, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17086, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17087, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17088, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17089, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17090, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17091, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17092, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17093, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17094, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17095, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17096, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17097, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17098, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17099, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17100, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17101, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17102, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17103, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17104, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17105, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17106, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17107, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17108, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17109, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17110, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17111, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17112, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17113, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17114, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17115, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17116, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17117, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17118, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17119, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17120, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17121, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17122, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17123, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17124, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17125, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17126, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17127, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17128, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17129, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17130, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17131, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17132, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17133, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17134, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17135, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17136, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17137, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17138, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17139, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17140, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17141, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17142, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17143, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17144, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17145, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17146, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17147, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17148, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17149, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17150, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17151, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17152, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17153, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17154, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17155, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17156, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17157, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17158, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17159, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17160, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17161, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17162, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17163, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17164, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17165, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17166, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17167, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17168, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17169, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17170, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17171, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17172, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17173, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17174, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17175, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17176, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17177, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17178, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17179, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17180, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17181, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17182, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17183, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17184, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17185, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17186, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17187, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17188, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17189, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17190, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17191, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17192, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17193, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17194, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17195, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17196, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17197, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17198, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17199, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17200, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17201, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17202, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17203, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17204, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17205, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17206, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17207, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17208, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17209, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17210, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17211, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17212, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17213, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17214, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17215, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17216, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17217, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17218, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17219, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17220, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17221, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17222, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17223, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17224, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17225, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17226, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17227, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17228, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17229, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17230, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17231, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17232, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17233, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17234, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17235, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17236, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17237, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17238, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17239, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17240, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17241, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17242, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17243, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17244, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17245, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17246, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17247, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17248, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17249, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17250, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17251, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17252, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17253, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17254, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17255, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17256, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17257, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17258, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17259, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17260, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17261, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17262, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17263, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17264, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17265, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17266, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17267, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17268, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17269, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17270, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17271, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17272, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17273, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17274, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17275, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17276, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17277, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17278, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17279, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17280, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17281, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17282, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17283, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17284, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17285, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17286, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17287, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17288, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17289, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17290, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17291, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17292, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17293, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17294, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17295, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17296, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17297, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17298, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17299, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17300, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17301, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17302, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17303, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17304, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17305, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17306, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17307, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17308, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17309, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17310, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17311, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17312, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17313, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17314, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17315, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17316, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17317, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17318, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17319, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17320, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17321, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17322, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17323, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17324, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17325, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17326, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17327, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17328, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17329, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17330, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17331, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17332, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17333, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17334, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17335, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17336, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17337, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17338, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17339, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17340, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17341, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17342, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17343, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17344, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17345, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17346, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17347, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17348, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17349, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17350, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17351, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17352, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17353, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17354, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17355, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17356, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17357, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17358, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17359, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17360, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17361, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17362, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17363, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17364, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17365, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17366, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17367, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17368, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17369, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17370, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17371, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17372, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17373, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17374, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17375, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17376, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17377, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17378, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17379, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17380, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17381, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17382, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17383, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17384, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17385, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17386, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17387, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17388, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17389, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17390, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17391, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17392, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17393, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17394, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17395, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17396, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17397, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17398, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17399, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:red_nether_bricks": {States: []{{Id: 12545, Properties: map[string]string{}}}}, "minecraft:red_sand": {States: []{{Id: 117, Properties: map[string]string{}}}}, "minecraft:red_sandstone": {States: []{{Id: 11079, Properties: map[string]string{}}}}, "minecraft:red_sandstone_slab": {States: []{{Id: 11288, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11289, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11290, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11291, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11292, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11293, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:red_sandstone_stairs": {States: []{{Id: 11082, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 11083, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 11084, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 11085, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 11086, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 11087, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 11088, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 11089, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 11090, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 11091, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 11092, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 11093, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 11094, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 11095, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 11096, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 11097, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 11098, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 11099, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 11100, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 11101, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 11102, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 11103, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 11104, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 11105, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 11106, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 11107, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 11108, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 11109, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 11110, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 11111, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 11112, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 11113, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 11114, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 11115, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 11116, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 11117, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 11118, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 11119, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 11120, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 11121, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 11122, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 11123, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 11124, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 11125, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 11126, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 11127, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 11128, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 11129, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 11130, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 11131, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 11132, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 11133, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 11134, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 11135, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 11136, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 11137, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 11138, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 11139, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 11140, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 11141, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 11142, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 11143, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 11144, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 11145, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 11146, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 11147, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 11148, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 11149, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 11150, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 11151, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 11152, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 11153, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 11154, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 11155, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 11156, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 11157, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 11158, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 11159, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 11160, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 11161, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:red_sandstone_wall": {States: []{{Id: 14808, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14809, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14810, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14811, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14812, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14813, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14814, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14815, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14816, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14817, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14818, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14819, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14820, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14821, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14822, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14823, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14824, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14825, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14826, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14827, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14828, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14829, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14830, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14831, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14832, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14833, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14834, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14835, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14836, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14837, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14838, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14839, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14840, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14841, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14842, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14843, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14844, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14845, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14846, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14847, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14848, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14849, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14850, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14851, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14852, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14853, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14854, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14855, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14856, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14857, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14858, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14859, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14860, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14861, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14862, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14863, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14864, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14865, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14866, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14867, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14868, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14869, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14870, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14871, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14872, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14873, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14874, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14875, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14876, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14877, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14878, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14879, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14880, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14881, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14882, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14883, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14884, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14885, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14886, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14887, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14888, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14889, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14890, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14891, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14892, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14893, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14894, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14895, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14896, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14897, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14898, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14899, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14900, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14901, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14902, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14903, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14904, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14905, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14906, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14907, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14908, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14909, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14910, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14911, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14912, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14913, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14914, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14915, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14916, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14917, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14918, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14919, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14920, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14921, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14922, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14923, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14924, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14925, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14926, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14927, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14928, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14929, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14930, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14931, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14932, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14933, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14934, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14935, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14936, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14937, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14938, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14939, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14940, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14941, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14942, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14943, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14944, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14945, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14946, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14947, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14948, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14949, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14950, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14951, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14952, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14953, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14954, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14955, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14956, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14957, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14958, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14959, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14960, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14961, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14962, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14963, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14964, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14965, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14966, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14967, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14968, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14969, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14970, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14971, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14972, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14973, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14974, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14975, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14976, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14977, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14978, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14979, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14980, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14981, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14982, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14983, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14984, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14985, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14986, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14987, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 14988, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 14989, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 14990, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 14991, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 14992, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 14993, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 14994, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 14995, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 14996, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 14997, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 14998, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 14999, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15000, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15001, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15002, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15003, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15004, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15005, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15006, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15007, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15008, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15009, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15010, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15011, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15012, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15013, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15014, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15015, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15016, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15017, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15018, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15019, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15020, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15021, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15022, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15023, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15024, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15025, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15026, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15027, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15028, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15029, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15030, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15031, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15032, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15033, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15034, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15035, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15036, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15037, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15038, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15039, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15040, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15041, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15042, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15043, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15044, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15045, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15046, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15047, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15048, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15049, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15050, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15051, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15052, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15053, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15054, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15055, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15056, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15057, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15058, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15059, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15060, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15061, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15062, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15063, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15064, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15065, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15066, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15067, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15068, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15069, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15070, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15071, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15072, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15073, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15074, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15075, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15076, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15077, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15078, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15079, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15080, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15081, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15082, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15083, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15084, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15085, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15086, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15087, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15088, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15089, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15090, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15091, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15092, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15093, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15094, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15095, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15096, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15097, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15098, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15099, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15100, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15101, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15102, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15103, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15104, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15105, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15106, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15107, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15108, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15109, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15110, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15111, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15112, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15113, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15114, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15115, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15116, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15117, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15118, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15119, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15120, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15121, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15122, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15123, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15124, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15125, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15126, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15127, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15128, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15129, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15130, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15131, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:red_shulker_box": {States: []{{Id: 12652, Properties: map[string]string{"facing": "north"}}, {Id: 12653, Properties: map[string]string{"facing": "east"}}, {Id: 12654, Properties: map[string]string{"facing": "south"}}, {Id: 12655, Properties: map[string]string{"facing": "west"}}, {Id: 12656, Properties: map[string]string{"facing": "up"}}, {Id: 12657, Properties: map[string]string{"facing": "down"}}}}, "minecraft:red_stained_glass": {States: []{{Id: 5959, Properties: map[string]string{}}}}, "minecraft:red_stained_glass_pane": {States: []{{Id: 9820, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9821, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9822, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9823, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9824, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9825, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9826, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9827, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9828, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9829, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9830, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9831, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9832, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9833, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9834, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9835, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9836, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9837, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9838, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9839, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9840, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9841, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9842, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9843, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9844, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9845, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9846, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9847, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9848, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9849, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9850, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9851, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:red_terracotta": {States: []{{Id: 9370, Properties: map[string]string{}}}}, "minecraft:red_tulip": {States: []{{Id: 2081, Properties: map[string]string{}}}}, "minecraft:red_wall_banner": {States: []{{Id: 11071, Properties: map[string]string{"facing": "north"}}, {Id: 11072, Properties: map[string]string{"facing": "south"}}, {Id: 11073, Properties: map[string]string{"facing": "west"}}, {Id: 11074, Properties: map[string]string{"facing": "east"}}}}, "minecraft:red_wool": {States: []{{Id: 2061, Properties: map[string]string{}}}}, "minecraft:redstone_block": {States: []{{Id: 9223, Properties: map[string]string{}}}}, "minecraft:redstone_lamp": {States: []{{Id: 7417, Properties: map[string]string{"lit": "true"}}, {Id: 7418, Properties: map[string]string{"lit": "false"}}}}, "minecraft:redstone_ore": {States: []{{Id: 5734, Properties: map[string]string{"lit": "true"}}, {Id: 5735, Properties: map[string]string{"lit": "false"}}}}, "minecraft:redstone_torch": {States: []{{Id: 5738, Properties: map[string]string{"lit": "true"}}, {Id: 5739, Properties: map[string]string{"lit": "false"}}}}, "minecraft:redstone_wall_torch": {States: []{{Id: 5740, Properties: map[string]string{"facing": "north", "lit": "true"}}, {Id: 5741, Properties: map[string]string{"facing": "north", "lit": "false"}}, {Id: 5742, Properties: map[string]string{"facing": "south", "lit": "true"}}, {Id: 5743, Properties: map[string]string{"facing": "south", "lit": "false"}}, {Id: 5744, Properties: map[string]string{"facing": "west", "lit": "true"}}, {Id: 5745, Properties: map[string]string{"facing": "west", "lit": "false"}}, {Id: 5746, Properties: map[string]string{"facing": "east", "lit": "true"}}, {Id: 5747, Properties: map[string]string{"facing": "east", "lit": "false"}}}}, "minecraft:redstone_wire": {States: []{{Id: 2978, Properties: map[string]string{"east": "up", "north": "up", "power": "0", "south": "up", "west": "up"}}, {Id: 2979, Properties: map[string]string{"east": "up", "north": "up", "power": "0", "south": "up", "west": "side"}}, {Id: 2980, Properties: map[string]string{"east": "up", "north": "up", "power": "0", "south": "up", "west": "none"}}, {Id: 2981, Properties: map[string]string{"east": "up", "north": "up", "power": "0", "south": "side", "west": "up"}}, {Id: 2982, Properties: map[string]string{"east": "up", "north": "up", "power": "0", "south": "side", "west": "side"}}, {Id: 2983, Properties: map[string]string{"east": "up", "north": "up", "power": "0", "south": "side", "west": "none"}}, {Id: 2984, Properties: map[string]string{"east": "up", "north": "up", "power": "0", "south": "none", "west": "up"}}, {Id: 2985, Properties: map[string]string{"east": "up", "north": "up", "power": "0", "south": "none", "west": "side"}}, {Id: 2986, Properties: map[string]string{"east": "up", "north": "up", "power": "0", "south": "none", "west": "none"}}, {Id: 2987, Properties: map[string]string{"east": "up", "north": "up", "power": "1", "south": "up", "west": "up"}}, {Id: 2988, Properties: map[string]string{"east": "up", "north": "up", "power": "1", "south": "up", "west": "side"}}, {Id: 2989, Properties: map[string]string{"east": "up", "north": "up", "power": "1", "south": "up", "west": "none"}}, {Id: 2990, Properties: map[string]string{"east": "up", "north": "up", "power": "1", "south": "side", "west": "up"}}, {Id: 2991, Properties: map[string]string{"east": "up", "north": "up", "power": "1", "south": "side", "west": "side"}}, {Id: 2992, Properties: map[string]string{"east": "up", "north": "up", "power": "1", "south": "side", "west": "none"}}, {Id: 2993, Properties: map[string]string{"east": "up", "north": "up", "power": "1", "south": "none", "west": "up"}}, {Id: 2994, Properties: map[string]string{"east": "up", "north": "up", "power": "1", "south": "none", "west": "side"}}, {Id: 2995, Properties: map[string]string{"east": "up", "north": "up", "power": "1", "south": "none", "west": "none"}}, {Id: 2996, Properties: map[string]string{"east": "up", "north": "up", "power": "2", "south": "up", "west": "up"}}, {Id: 2997, Properties: map[string]string{"east": "up", "north": "up", "power": "2", "south": "up", "west": "side"}}, {Id: 2998, Properties: map[string]string{"east": "up", "north": "up", "power": "2", "south": "up", "west": "none"}}, {Id: 2999, Properties: map[string]string{"east": "up", "north": "up", "power": "2", "south": "side", "west": "up"}}, {Id: 3000, Properties: map[string]string{"east": "up", "north": "up", "power": "2", "south": "side", "west": "side"}}, {Id: 3001, Properties: map[string]string{"east": "up", "north": "up", "power": "2", "south": "side", "west": "none"}}, {Id: 3002, Properties: map[string]string{"east": "up", "north": "up", "power": "2", "south": "none", "west": "up"}}, {Id: 3003, Properties: map[string]string{"east": "up", "north": "up", "power": "2", "south": "none", "west": "side"}}, {Id: 3004, Properties: map[string]string{"east": "up", "north": "up", "power": "2", "south": "none", "west": "none"}}, {Id: 3005, Properties: map[string]string{"east": "up", "north": "up", "power": "3", "south": "up", "west": "up"}}, {Id: 3006, Properties: map[string]string{"east": "up", "north": "up", "power": "3", "south": "up", "west": "side"}}, {Id: 3007, Properties: map[string]string{"east": "up", "north": "up", "power": "3", "south": "up", "west": "none"}}, {Id: 3008, Properties: map[string]string{"east": "up", "north": "up", "power": "3", "south": "side", "west": "up"}}, {Id: 3009, Properties: map[string]string{"east": "up", "north": "up", "power": "3", "south": "side", "west": "side"}}, {Id: 3010, Properties: map[string]string{"east": "up", "north": "up", "power": "3", "south": "side", "west": "none"}}, {Id: 3011, Properties: map[string]string{"east": "up", "north": "up", "power": "3", "south": "none", "west": "up"}}, {Id: 3012, Properties: map[string]string{"east": "up", "north": "up", "power": "3", "south": "none", "west": "side"}}, {Id: 3013, Properties: map[string]string{"east": "up", "north": "up", "power": "3", "south": "none", "west": "none"}}, {Id: 3014, Properties: map[string]string{"east": "up", "north": "up", "power": "4", "south": "up", "west": "up"}}, {Id: 3015, Properties: map[string]string{"east": "up", "north": "up", "power": "4", "south": "up", "west": "side"}}, {Id: 3016, Properties: map[string]string{"east": "up", "north": "up", "power": "4", "south": "up", "west": "none"}}, {Id: 3017, Properties: map[string]string{"east": "up", "north": "up", "power": "4", "south": "side", "west": "up"}}, {Id: 3018, Properties: map[string]string{"east": "up", "north": "up", "power": "4", "south": "side", "west": "side"}}, {Id: 3019, Properties: map[string]string{"east": "up", "north": "up", "power": "4", "south": "side", "west": "none"}}, {Id: 3020, Properties: map[string]string{"east": "up", "north": "up", "power": "4", "south": "none", "west": "up"}}, {Id: 3021, Properties: map[string]string{"east": "up", "north": "up", "power": "4", "south": "none", "west": "side"}}, {Id: 3022, Properties: map[string]string{"east": "up", "north": "up", "power": "4", "south": "none", "west": "none"}}, {Id: 3023, Properties: map[string]string{"east": "up", "north": "up", "power": "5", "south": "up", "west": "up"}}, {Id: 3024, Properties: map[string]string{"east": "up", "north": "up", "power": "5", "south": "up", "west": "side"}}, {Id: 3025, Properties: map[string]string{"east": "up", "north": "up", "power": "5", "south": "up", "west": "none"}}, {Id: 3026, Properties: map[string]string{"east": "up", "north": "up", "power": "5", "south": "side", "west": "up"}}, {Id: 3027, Properties: map[string]string{"east": "up", "north": "up", "power": "5", "south": "side", "west": "side"}}, {Id: 3028, Properties: map[string]string{"east": "up", "north": "up", "power": "5", "south": "side", "west": "none"}}, {Id: 3029, Properties: map[string]string{"east": "up", "north": "up", "power": "5", "south": "none", "west": "up"}}, {Id: 3030, Properties: map[string]string{"east": "up", "north": "up", "power": "5", "south": "none", "west": "side"}}, {Id: 3031, Properties: map[string]string{"east": "up", "north": "up", "power": "5", "south": "none", "west": "none"}}, {Id: 3032, Properties: map[string]string{"east": "up", "north": "up", "power": "6", "south": "up", "west": "up"}}, {Id: 3033, Properties: map[string]string{"east": "up", "north": "up", "power": "6", "south": "up", "west": "side"}}, {Id: 3034, Properties: map[string]string{"east": "up", "north": "up", "power": "6", "south": "up", "west": "none"}}, {Id: 3035, Properties: map[string]string{"east": "up", "north": "up", "power": "6", "south": "side", "west": "up"}}, {Id: 3036, Properties: map[string]string{"east": "up", "north": "up", "power": "6", "south": "side", "west": "side"}}, {Id: 3037, Properties: map[string]string{"east": "up", "north": "up", "power": "6", "south": "side", "west": "none"}}, {Id: 3038, Properties: map[string]string{"east": "up", "north": "up", "power": "6", "south": "none", "west": "up"}}, {Id: 3039, Properties: map[string]string{"east": "up", "north": "up", "power": "6", "south": "none", "west": "side"}}, {Id: 3040, Properties: map[string]string{"east": "up", "north": "up", "power": "6", "south": "none", "west": "none"}}, {Id: 3041, Properties: map[string]string{"east": "up", "north": "up", "power": "7", "south": "up", "west": "up"}}, {Id: 3042, Properties: map[string]string{"east": "up", "north": "up", "power": "7", "south": "up", "west": "side"}}, {Id: 3043, Properties: map[string]string{"east": "up", "north": "up", "power": "7", "south": "up", "west": "none"}}, {Id: 3044, Properties: map[string]string{"east": "up", "north": "up", "power": "7", "south": "side", "west": "up"}}, {Id: 3045, Properties: map[string]string{"east": "up", "north": "up", "power": "7", "south": "side", "west": "side"}}, {Id: 3046, Properties: map[string]string{"east": "up", "north": "up", "power": "7", "south": "side", "west": "none"}}, {Id: 3047, Properties: map[string]string{"east": "up", "north": "up", "power": "7", "south": "none", "west": "up"}}, {Id: 3048, Properties: map[string]string{"east": "up", "north": "up", "power": "7", "south": "none", "west": "side"}}, {Id: 3049, Properties: map[string]string{"east": "up", "north": "up", "power": "7", "south": "none", "west": "none"}}, {Id: 3050, Properties: map[string]string{"east": "up", "north": "up", "power": "8", "south": "up", "west": "up"}}, {Id: 3051, Properties: map[string]string{"east": "up", "north": "up", "power": "8", "south": "up", "west": "side"}}, {Id: 3052, Properties: map[string]string{"east": "up", "north": "up", "power": "8", "south": "up", "west": "none"}}, {Id: 3053, Properties: map[string]string{"east": "up", "north": "up", "power": "8", "south": "side", "west": "up"}}, {Id: 3054, Properties: map[string]string{"east": "up", "north": "up", "power": "8", "south": "side", "west": "side"}}, {Id: 3055, Properties: map[string]string{"east": "up", "north": "up", "power": "8", "south": "side", "west": "none"}}, {Id: 3056, Properties: map[string]string{"east": "up", "north": "up", "power": "8", "south": "none", "west": "up"}}, {Id: 3057, Properties: map[string]string{"east": "up", "north": "up", "power": "8", "south": "none", "west": "side"}}, {Id: 3058, Properties: map[string]string{"east": "up", "north": "up", "power": "8", "south": "none", "west": "none"}}, {Id: 3059, Properties: map[string]string{"east": "up", "north": "up", "power": "9", "south": "up", "west": "up"}}, {Id: 3060, Properties: map[string]string{"east": "up", "north": "up", "power": "9", "south": "up", "west": "side"}}, {Id: 3061, Properties: map[string]string{"east": "up", "north": "up", "power": "9", "south": "up", "west": "none"}}, {Id: 3062, Properties: map[string]string{"east": "up", "north": "up", "power": "9", "south": "side", "west": "up"}}, {Id: 3063, Properties: map[string]string{"east": "up", "north": "up", "power": "9", "south": "side", "west": "side"}}, {Id: 3064, Properties: map[string]string{"east": "up", "north": "up", "power": "9", "south": "side", "west": "none"}}, {Id: 3065, Properties: map[string]string{"east": "up", "north": "up", "power": "9", "south": "none", "west": "up"}}, {Id: 3066, Properties: map[string]string{"east": "up", "north": "up", "power": "9", "south": "none", "west": "side"}}, {Id: 3067, Properties: map[string]string{"east": "up", "north": "up", "power": "9", "south": "none", "west": "none"}}, {Id: 3068, Properties: map[string]string{"east": "up", "north": "up", "power": "10", "south": "up", "west": "up"}}, {Id: 3069, Properties: map[string]string{"east": "up", "north": "up", "power": "10", "south": "up", "west": "side"}}, {Id: 3070, Properties: map[string]string{"east": "up", "north": "up", "power": "10", "south": "up", "west": "none"}}, {Id: 3071, Properties: map[string]string{"east": "up", "north": "up", "power": "10", "south": "side", "west": "up"}}, {Id: 3072, Properties: map[string]string{"east": "up", "north": "up", "power": "10", "south": "side", "west": "side"}}, {Id: 3073, Properties: map[string]string{"east": "up", "north": "up", "power": "10", "south": "side", "west": "none"}}, {Id: 3074, Properties: map[string]string{"east": "up", "north": "up", "power": "10", "south": "none", "west": "up"}}, {Id: 3075, Properties: map[string]string{"east": "up", "north": "up", "power": "10", "south": "none", "west": "side"}}, {Id: 3076, Properties: map[string]string{"east": "up", "north": "up", "power": "10", "south": "none", "west": "none"}}, {Id: 3077, Properties: map[string]string{"east": "up", "north": "up", "power": "11", "south": "up", "west": "up"}}, {Id: 3078, Properties: map[string]string{"east": "up", "north": "up", "power": "11", "south": "up", "west": "side"}}, {Id: 3079, Properties: map[string]string{"east": "up", "north": "up", "power": "11", "south": "up", "west": "none"}}, {Id: 3080, Properties: map[string]string{"east": "up", "north": "up", "power": "11", "south": "side", "west": "up"}}, {Id: 3081, Properties: map[string]string{"east": "up", "north": "up", "power": "11", "south": "side", "west": "side"}}, {Id: 3082, Properties: map[string]string{"east": "up", "north": "up", "power": "11", "south": "side", "west": "none"}}, {Id: 3083, Properties: map[string]string{"east": "up", "north": "up", "power": "11", "south": "none", "west": "up"}}, {Id: 3084, Properties: map[string]string{"east": "up", "north": "up", "power": "11", "south": "none", "west": "side"}}, {Id: 3085, Properties: map[string]string{"east": "up", "north": "up", "power": "11", "south": "none", "west": "none"}}, {Id: 3086, Properties: map[string]string{"east": "up", "north": "up", "power": "12", "south": "up", "west": "up"}}, {Id: 3087, Properties: map[string]string{"east": "up", "north": "up", "power": "12", "south": "up", "west": "side"}}, {Id: 3088, Properties: map[string]string{"east": "up", "north": "up", "power": "12", "south": "up", "west": "none"}}, {Id: 3089, Properties: map[string]string{"east": "up", "north": "up", "power": "12", "south": "side", "west": "up"}}, {Id: 3090, Properties: map[string]string{"east": "up", "north": "up", "power": "12", "south": "side", "west": "side"}}, {Id: 3091, Properties: map[string]string{"east": "up", "north": "up", "power": "12", "south": "side", "west": "none"}}, {Id: 3092, Properties: map[string]string{"east": "up", "north": "up", "power": "12", "south": "none", "west": "up"}}, {Id: 3093, Properties: map[string]string{"east": "up", "north": "up", "power": "12", "south": "none", "west": "side"}}, {Id: 3094, Properties: map[string]string{"east": "up", "north": "up", "power": "12", "south": "none", "west": "none"}}, {Id: 3095, Properties: map[string]string{"east": "up", "north": "up", "power": "13", "south": "up", "west": "up"}}, {Id: 3096, Properties: map[string]string{"east": "up", "north": "up", "power": "13", "south": "up", "west": "side"}}, {Id: 3097, Properties: map[string]string{"east": "up", "north": "up", "power": "13", "south": "up", "west": "none"}}, {Id: 3098, Properties: map[string]string{"east": "up", "north": "up", "power": "13", "south": "side", "west": "up"}}, {Id: 3099, Properties: map[string]string{"east": "up", "north": "up", "power": "13", "south": "side", "west": "side"}}, {Id: 3100, Properties: map[string]string{"east": "up", "north": "up", "power": "13", "south": "side", "west": "none"}}, {Id: 3101, Properties: map[string]string{"east": "up", "north": "up", "power": "13", "south": "none", "west": "up"}}, {Id: 3102, Properties: map[string]string{"east": "up", "north": "up", "power": "13", "south": "none", "west": "side"}}, {Id: 3103, Properties: map[string]string{"east": "up", "north": "up", "power": "13", "south": "none", "west": "none"}}, {Id: 3104, Properties: map[string]string{"east": "up", "north": "up", "power": "14", "south": "up", "west": "up"}}, {Id: 3105, Properties: map[string]string{"east": "up", "north": "up", "power": "14", "south": "up", "west": "side"}}, {Id: 3106, Properties: map[string]string{"east": "up", "north": "up", "power": "14", "south": "up", "west": "none"}}, {Id: 3107, Properties: map[string]string{"east": "up", "north": "up", "power": "14", "south": "side", "west": "up"}}, {Id: 3108, Properties: map[string]string{"east": "up", "north": "up", "power": "14", "south": "side", "west": "side"}}, {Id: 3109, Properties: map[string]string{"east": "up", "north": "up", "power": "14", "south": "side", "west": "none"}}, {Id: 3110, Properties: map[string]string{"east": "up", "north": "up", "power": "14", "south": "none", "west": "up"}}, {Id: 3111, Properties: map[string]string{"east": "up", "north": "up", "power": "14", "south": "none", "west": "side"}}, {Id: 3112, Properties: map[string]string{"east": "up", "north": "up", "power": "14", "south": "none", "west": "none"}}, {Id: 3113, Properties: map[string]string{"east": "up", "north": "up", "power": "15", "south": "up", "west": "up"}}, {Id: 3114, Properties: map[string]string{"east": "up", "north": "up", "power": "15", "south": "up", "west": "side"}}, {Id: 3115, Properties: map[string]string{"east": "up", "north": "up", "power": "15", "south": "up", "west": "none"}}, {Id: 3116, Properties: map[string]string{"east": "up", "north": "up", "power": "15", "south": "side", "west": "up"}}, {Id: 3117, Properties: map[string]string{"east": "up", "north": "up", "power": "15", "south": "side", "west": "side"}}, {Id: 3118, Properties: map[string]string{"east": "up", "north": "up", "power": "15", "south": "side", "west": "none"}}, {Id: 3119, Properties: map[string]string{"east": "up", "north": "up", "power": "15", "south": "none", "west": "up"}}, {Id: 3120, Properties: map[string]string{"east": "up", "north": "up", "power": "15", "south": "none", "west": "side"}}, {Id: 3121, Properties: map[string]string{"east": "up", "north": "up", "power": "15", "south": "none", "west": "none"}}, {Id: 3122, Properties: map[string]string{"east": "up", "north": "side", "power": "0", "south": "up", "west": "up"}}, {Id: 3123, Properties: map[string]string{"east": "up", "north": "side", "power": "0", "south": "up", "west": "side"}}, {Id: 3124, Properties: map[string]string{"east": "up", "north": "side", "power": "0", "south": "up", "west": "none"}}, {Id: 3125, Properties: map[string]string{"east": "up", "north": "side", "power": "0", "south": "side", "west": "up"}}, {Id: 3126, Properties: map[string]string{"east": "up", "north": "side", "power": "0", "south": "side", "west": "side"}}, {Id: 3127, Properties: map[string]string{"east": "up", "north": "side", "power": "0", "south": "side", "west": "none"}}, {Id: 3128, Properties: map[string]string{"east": "up", "north": "side", "power": "0", "south": "none", "west": "up"}}, {Id: 3129, Properties: map[string]string{"east": "up", "north": "side", "power": "0", "south": "none", "west": "side"}}, {Id: 3130, Properties: map[string]string{"east": "up", "north": "side", "power": "0", "south": "none", "west": "none"}}, {Id: 3131, Properties: map[string]string{"east": "up", "north": "side", "power": "1", "south": "up", "west": "up"}}, {Id: 3132, Properties: map[string]string{"east": "up", "north": "side", "power": "1", "south": "up", "west": "side"}}, {Id: 3133, Properties: map[string]string{"east": "up", "north": "side", "power": "1", "south": "up", "west": "none"}}, {Id: 3134, Properties: map[string]string{"east": "up", "north": "side", "power": "1", "south": "side", "west": "up"}}, {Id: 3135, Properties: map[string]string{"east": "up", "north": "side", "power": "1", "south": "side", "west": "side"}}, {Id: 3136, Properties: map[string]string{"east": "up", "north": "side", "power": "1", "south": "side", "west": "none"}}, {Id: 3137, Properties: map[string]string{"east": "up", "north": "side", "power": "1", "south": "none", "west": "up"}}, {Id: 3138, Properties: map[string]string{"east": "up", "north": "side", "power": "1", "south": "none", "west": "side"}}, {Id: 3139, Properties: map[string]string{"east": "up", "north": "side", "power": "1", "south": "none", "west": "none"}}, {Id: 3140, Properties: map[string]string{"east": "up", "north": "side", "power": "2", "south": "up", "west": "up"}}, {Id: 3141, Properties: map[string]string{"east": "up", "north": "side", "power": "2", "south": "up", "west": "side"}}, {Id: 3142, Properties: map[string]string{"east": "up", "north": "side", "power": "2", "south": "up", "west": "none"}}, {Id: 3143, Properties: map[string]string{"east": "up", "north": "side", "power": "2", "south": "side", "west": "up"}}, {Id: 3144, Properties: map[string]string{"east": "up", "north": "side", "power": "2", "south": "side", "west": "side"}}, {Id: 3145, Properties: map[string]string{"east": "up", "north": "side", "power": "2", "south": "side", "west": "none"}}, {Id: 3146, Properties: map[string]string{"east": "up", "north": "side", "power": "2", "south": "none", "west": "up"}}, {Id: 3147, Properties: map[string]string{"east": "up", "north": "side", "power": "2", "south": "none", "west": "side"}}, {Id: 3148, Properties: map[string]string{"east": "up", "north": "side", "power": "2", "south": "none", "west": "none"}}, {Id: 3149, Properties: map[string]string{"east": "up", "north": "side", "power": "3", "south": "up", "west": "up"}}, {Id: 3150, Properties: map[string]string{"east": "up", "north": "side", "power": "3", "south": "up", "west": "side"}}, {Id: 3151, Properties: map[string]string{"east": "up", "north": "side", "power": "3", "south": "up", "west": "none"}}, {Id: 3152, Properties: map[string]string{"east": "up", "north": "side", "power": "3", "south": "side", "west": "up"}}, {Id: 3153, Properties: map[string]string{"east": "up", "north": "side", "power": "3", "south": "side", "west": "side"}}, {Id: 3154, Properties: map[string]string{"east": "up", "north": "side", "power": "3", "south": "side", "west": "none"}}, {Id: 3155, Properties: map[string]string{"east": "up", "north": "side", "power": "3", "south": "none", "west": "up"}}, {Id: 3156, Properties: map[string]string{"east": "up", "north": "side", "power": "3", "south": "none", "west": "side"}}, {Id: 3157, Properties: map[string]string{"east": "up", "north": "side", "power": "3", "south": "none", "west": "none"}}, {Id: 3158, Properties: map[string]string{"east": "up", "north": "side", "power": "4", "south": "up", "west": "up"}}, {Id: 3159, Properties: map[string]string{"east": "up", "north": "side", "power": "4", "south": "up", "west": "side"}}, {Id: 3160, Properties: map[string]string{"east": "up", "north": "side", "power": "4", "south": "up", "west": "none"}}, {Id: 3161, Properties: map[string]string{"east": "up", "north": "side", "power": "4", "south": "side", "west": "up"}}, {Id: 3162, Properties: map[string]string{"east": "up", "north": "side", "power": "4", "south": "side", "west": "side"}}, {Id: 3163, Properties: map[string]string{"east": "up", "north": "side", "power": "4", "south": "side", "west": "none"}}, {Id: 3164, Properties: map[string]string{"east": "up", "north": "side", "power": "4", "south": "none", "west": "up"}}, {Id: 3165, Properties: map[string]string{"east": "up", "north": "side", "power": "4", "south": "none", "west": "side"}}, {Id: 3166, Properties: map[string]string{"east": "up", "north": "side", "power": "4", "south": "none", "west": "none"}}, {Id: 3167, Properties: map[string]string{"east": "up", "north": "side", "power": "5", "south": "up", "west": "up"}}, {Id: 3168, Properties: map[string]string{"east": "up", "north": "side", "power": "5", "south": "up", "west": "side"}}, {Id: 3169, Properties: map[string]string{"east": "up", "north": "side", "power": "5", "south": "up", "west": "none"}}, {Id: 3170, Properties: map[string]string{"east": "up", "north": "side", "power": "5", "south": "side", "west": "up"}}, {Id: 3171, Properties: map[string]string{"east": "up", "north": "side", "power": "5", "south": "side", "west": "side"}}, {Id: 3172, Properties: map[string]string{"east": "up", "north": "side", "power": "5", "south": "side", "west": "none"}}, {Id: 3173, Properties: map[string]string{"east": "up", "north": "side", "power": "5", "south": "none", "west": "up"}}, {Id: 3174, Properties: map[string]string{"east": "up", "north": "side", "power": "5", "south": "none", "west": "side"}}, {Id: 3175, Properties: map[string]string{"east": "up", "north": "side", "power": "5", "south": "none", "west": "none"}}, {Id: 3176, Properties: map[string]string{"east": "up", "north": "side", "power": "6", "south": "up", "west": "up"}}, {Id: 3177, Properties: map[string]string{"east": "up", "north": "side", "power": "6", "south": "up", "west": "side"}}, {Id: 3178, Properties: map[string]string{"east": "up", "north": "side", "power": "6", "south": "up", "west": "none"}}, {Id: 3179, Properties: map[string]string{"east": "up", "north": "side", "power": "6", "south": "side", "west": "up"}}, {Id: 3180, Properties: map[string]string{"east": "up", "north": "side", "power": "6", "south": "side", "west": "side"}}, {Id: 3181, Properties: map[string]string{"east": "up", "north": "side", "power": "6", "south": "side", "west": "none"}}, {Id: 3182, Properties: map[string]string{"east": "up", "north": "side", "power": "6", "south": "none", "west": "up"}}, {Id: 3183, Properties: map[string]string{"east": "up", "north": "side", "power": "6", "south": "none", "west": "side"}}, {Id: 3184, Properties: map[string]string{"east": "up", "north": "side", "power": "6", "south": "none", "west": "none"}}, {Id: 3185, Properties: map[string]string{"east": "up", "north": "side", "power": "7", "south": "up", "west": "up"}}, {Id: 3186, Properties: map[string]string{"east": "up", "north": "side", "power": "7", "south": "up", "west": "side"}}, {Id: 3187, Properties: map[string]string{"east": "up", "north": "side", "power": "7", "south": "up", "west": "none"}}, {Id: 3188, Properties: map[string]string{"east": "up", "north": "side", "power": "7", "south": "side", "west": "up"}}, {Id: 3189, Properties: map[string]string{"east": "up", "north": "side", "power": "7", "south": "side", "west": "side"}}, {Id: 3190, Properties: map[string]string{"east": "up", "north": "side", "power": "7", "south": "side", "west": "none"}}, {Id: 3191, Properties: map[string]string{"east": "up", "north": "side", "power": "7", "south": "none", "west": "up"}}, {Id: 3192, Properties: map[string]string{"east": "up", "north": "side", "power": "7", "south": "none", "west": "side"}}, {Id: 3193, Properties: map[string]string{"east": "up", "north": "side", "power": "7", "south": "none", "west": "none"}}, {Id: 3194, Properties: map[string]string{"east": "up", "north": "side", "power": "8", "south": "up", "west": "up"}}, {Id: 3195, Properties: map[string]string{"east": "up", "north": "side", "power": "8", "south": "up", "west": "side"}}, {Id: 3196, Properties: map[string]string{"east": "up", "north": "side", "power": "8", "south": "up", "west": "none"}}, {Id: 3197, Properties: map[string]string{"east": "up", "north": "side", "power": "8", "south": "side", "west": "up"}}, {Id: 3198, Properties: map[string]string{"east": "up", "north": "side", "power": "8", "south": "side", "west": "side"}}, {Id: 3199, Properties: map[string]string{"east": "up", "north": "side", "power": "8", "south": "side", "west": "none"}}, {Id: 3200, Properties: map[string]string{"east": "up", "north": "side", "power": "8", "south": "none", "west": "up"}}, {Id: 3201, Properties: map[string]string{"east": "up", "north": "side", "power": "8", "south": "none", "west": "side"}}, {Id: 3202, Properties: map[string]string{"east": "up", "north": "side", "power": "8", "south": "none", "west": "none"}}, {Id: 3203, Properties: map[string]string{"east": "up", "north": "side", "power": "9", "south": "up", "west": "up"}}, {Id: 3204, Properties: map[string]string{"east": "up", "north": "side", "power": "9", "south": "up", "west": "side"}}, {Id: 3205, Properties: map[string]string{"east": "up", "north": "side", "power": "9", "south": "up", "west": "none"}}, {Id: 3206, Properties: map[string]string{"east": "up", "north": "side", "power": "9", "south": "side", "west": "up"}}, {Id: 3207, Properties: map[string]string{"east": "up", "north": "side", "power": "9", "south": "side", "west": "side"}}, {Id: 3208, Properties: map[string]string{"east": "up", "north": "side", "power": "9", "south": "side", "west": "none"}}, {Id: 3209, Properties: map[string]string{"east": "up", "north": "side", "power": "9", "south": "none", "west": "up"}}, {Id: 3210, Properties: map[string]string{"east": "up", "north": "side", "power": "9", "south": "none", "west": "side"}}, {Id: 3211, Properties: map[string]string{"east": "up", "north": "side", "power": "9", "south": "none", "west": "none"}}, {Id: 3212, Properties: map[string]string{"east": "up", "north": "side", "power": "10", "south": "up", "west": "up"}}, {Id: 3213, Properties: map[string]string{"east": "up", "north": "side", "power": "10", "south": "up", "west": "side"}}, {Id: 3214, Properties: map[string]string{"east": "up", "north": "side", "power": "10", "south": "up", "west": "none"}}, {Id: 3215, Properties: map[string]string{"east": "up", "north": "side", "power": "10", "south": "side", "west": "up"}}, {Id: 3216, Properties: map[string]string{"east": "up", "north": "side", "power": "10", "south": "side", "west": "side"}}, {Id: 3217, Properties: map[string]string{"east": "up", "north": "side", "power": "10", "south": "side", "west": "none"}}, {Id: 3218, Properties: map[string]string{"east": "up", "north": "side", "power": "10", "south": "none", "west": "up"}}, {Id: 3219, Properties: map[string]string{"east": "up", "north": "side", "power": "10", "south": "none", "west": "side"}}, {Id: 3220, Properties: map[string]string{"east": "up", "north": "side", "power": "10", "south": "none", "west": "none"}}, {Id: 3221, Properties: map[string]string{"east": "up", "north": "side", "power": "11", "south": "up", "west": "up"}}, {Id: 3222, Properties: map[string]string{"east": "up", "north": "side", "power": "11", "south": "up", "west": "side"}}, {Id: 3223, Properties: map[string]string{"east": "up", "north": "side", "power": "11", "south": "up", "west": "none"}}, {Id: 3224, Properties: map[string]string{"east": "up", "north": "side", "power": "11", "south": "side", "west": "up"}}, {Id: 3225, Properties: map[string]string{"east": "up", "north": "side", "power": "11", "south": "side", "west": "side"}}, {Id: 3226, Properties: map[string]string{"east": "up", "north": "side", "power": "11", "south": "side", "west": "none"}}, {Id: 3227, Properties: map[string]string{"east": "up", "north": "side", "power": "11", "south": "none", "west": "up"}}, {Id: 3228, Properties: map[string]string{"east": "up", "north": "side", "power": "11", "south": "none", "west": "side"}}, {Id: 3229, Properties: map[string]string{"east": "up", "north": "side", "power": "11", "south": "none", "west": "none"}}, {Id: 3230, Properties: map[string]string{"east": "up", "north": "side", "power": "12", "south": "up", "west": "up"}}, {Id: 3231, Properties: map[string]string{"east": "up", "north": "side", "power": "12", "south": "up", "west": "side"}}, {Id: 3232, Properties: map[string]string{"east": "up", "north": "side", "power": "12", "south": "up", "west": "none"}}, {Id: 3233, Properties: map[string]string{"east": "up", "north": "side", "power": "12", "south": "side", "west": "up"}}, {Id: 3234, Properties: map[string]string{"east": "up", "north": "side", "power": "12", "south": "side", "west": "side"}}, {Id: 3235, Properties: map[string]string{"east": "up", "north": "side", "power": "12", "south": "side", "west": "none"}}, {Id: 3236, Properties: map[string]string{"east": "up", "north": "side", "power": "12", "south": "none", "west": "up"}}, {Id: 3237, Properties: map[string]string{"east": "up", "north": "side", "power": "12", "south": "none", "west": "side"}}, {Id: 3238, Properties: map[string]string{"east": "up", "north": "side", "power": "12", "south": "none", "west": "none"}}, {Id: 3239, Properties: map[string]string{"east": "up", "north": "side", "power": "13", "south": "up", "west": "up"}}, {Id: 3240, Properties: map[string]string{"east": "up", "north": "side", "power": "13", "south": "up", "west": "side"}}, {Id: 3241, Properties: map[string]string{"east": "up", "north": "side", "power": "13", "south": "up", "west": "none"}}, {Id: 3242, Properties: map[string]string{"east": "up", "north": "side", "power": "13", "south": "side", "west": "up"}}, {Id: 3243, Properties: map[string]string{"east": "up", "north": "side", "power": "13", "south": "side", "west": "side"}}, {Id: 3244, Properties: map[string]string{"east": "up", "north": "side", "power": "13", "south": "side", "west": "none"}}, {Id: 3245, Properties: map[string]string{"east": "up", "north": "side", "power": "13", "south": "none", "west": "up"}}, {Id: 3246, Properties: map[string]string{"east": "up", "north": "side", "power": "13", "south": "none", "west": "side"}}, {Id: 3247, Properties: map[string]string{"east": "up", "north": "side", "power": "13", "south": "none", "west": "none"}}, {Id: 3248, Properties: map[string]string{"east": "up", "north": "side", "power": "14", "south": "up", "west": "up"}}, {Id: 3249, Properties: map[string]string{"east": "up", "north": "side", "power": "14", "south": "up", "west": "side"}}, {Id: 3250, Properties: map[string]string{"east": "up", "north": "side", "power": "14", "south": "up", "west": "none"}}, {Id: 3251, Properties: map[string]string{"east": "up", "north": "side", "power": "14", "south": "side", "west": "up"}}, {Id: 3252, Properties: map[string]string{"east": "up", "north": "side", "power": "14", "south": "side", "west": "side"}}, {Id: 3253, Properties: map[string]string{"east": "up", "north": "side", "power": "14", "south": "side", "west": "none"}}, {Id: 3254, Properties: map[string]string{"east": "up", "north": "side", "power": "14", "south": "none", "west": "up"}}, {Id: 3255, Properties: map[string]string{"east": "up", "north": "side", "power": "14", "south": "none", "west": "side"}}, {Id: 3256, Properties: map[string]string{"east": "up", "north": "side", "power": "14", "south": "none", "west": "none"}}, {Id: 3257, Properties: map[string]string{"east": "up", "north": "side", "power": "15", "south": "up", "west": "up"}}, {Id: 3258, Properties: map[string]string{"east": "up", "north": "side", "power": "15", "south": "up", "west": "side"}}, {Id: 3259, Properties: map[string]string{"east": "up", "north": "side", "power": "15", "south": "up", "west": "none"}}, {Id: 3260, Properties: map[string]string{"east": "up", "north": "side", "power": "15", "south": "side", "west": "up"}}, {Id: 3261, Properties: map[string]string{"east": "up", "north": "side", "power": "15", "south": "side", "west": "side"}}, {Id: 3262, Properties: map[string]string{"east": "up", "north": "side", "power": "15", "south": "side", "west": "none"}}, {Id: 3263, Properties: map[string]string{"east": "up", "north": "side", "power": "15", "south": "none", "west": "up"}}, {Id: 3264, Properties: map[string]string{"east": "up", "north": "side", "power": "15", "south": "none", "west": "side"}}, {Id: 3265, Properties: map[string]string{"east": "up", "north": "side", "power": "15", "south": "none", "west": "none"}}, {Id: 3266, Properties: map[string]string{"east": "up", "north": "none", "power": "0", "south": "up", "west": "up"}}, {Id: 3267, Properties: map[string]string{"east": "up", "north": "none", "power": "0", "south": "up", "west": "side"}}, {Id: 3268, Properties: map[string]string{"east": "up", "north": "none", "power": "0", "south": "up", "west": "none"}}, {Id: 3269, Properties: map[string]string{"east": "up", "north": "none", "power": "0", "south": "side", "west": "up"}}, {Id: 3270, Properties: map[string]string{"east": "up", "north": "none", "power": "0", "south": "side", "west": "side"}}, {Id: 3271, Properties: map[string]string{"east": "up", "north": "none", "power": "0", "south": "side", "west": "none"}}, {Id: 3272, Properties: map[string]string{"east": "up", "north": "none", "power": "0", "south": "none", "west": "up"}}, {Id: 3273, Properties: map[string]string{"east": "up", "north": "none", "power": "0", "south": "none", "west": "side"}}, {Id: 3274, Properties: map[string]string{"east": "up", "north": "none", "power": "0", "south": "none", "west": "none"}}, {Id: 3275, Properties: map[string]string{"east": "up", "north": "none", "power": "1", "south": "up", "west": "up"}}, {Id: 3276, Properties: map[string]string{"east": "up", "north": "none", "power": "1", "south": "up", "west": "side"}}, {Id: 3277, Properties: map[string]string{"east": "up", "north": "none", "power": "1", "south": "up", "west": "none"}}, {Id: 3278, Properties: map[string]string{"east": "up", "north": "none", "power": "1", "south": "side", "west": "up"}}, {Id: 3279, Properties: map[string]string{"east": "up", "north": "none", "power": "1", "south": "side", "west": "side"}}, {Id: 3280, Properties: map[string]string{"east": "up", "north": "none", "power": "1", "south": "side", "west": "none"}}, {Id: 3281, Properties: map[string]string{"east": "up", "north": "none", "power": "1", "south": "none", "west": "up"}}, {Id: 3282, Properties: map[string]string{"east": "up", "north": "none", "power": "1", "south": "none", "west": "side"}}, {Id: 3283, Properties: map[string]string{"east": "up", "north": "none", "power": "1", "south": "none", "west": "none"}}, {Id: 3284, Properties: map[string]string{"east": "up", "north": "none", "power": "2", "south": "up", "west": "up"}}, {Id: 3285, Properties: map[string]string{"east": "up", "north": "none", "power": "2", "south": "up", "west": "side"}}, {Id: 3286, Properties: map[string]string{"east": "up", "north": "none", "power": "2", "south": "up", "west": "none"}}, {Id: 3287, Properties: map[string]string{"east": "up", "north": "none", "power": "2", "south": "side", "west": "up"}}, {Id: 3288, Properties: map[string]string{"east": "up", "north": "none", "power": "2", "south": "side", "west": "side"}}, {Id: 3289, Properties: map[string]string{"east": "up", "north": "none", "power": "2", "south": "side", "west": "none"}}, {Id: 3290, Properties: map[string]string{"east": "up", "north": "none", "power": "2", "south": "none", "west": "up"}}, {Id: 3291, Properties: map[string]string{"east": "up", "north": "none", "power": "2", "south": "none", "west": "side"}}, {Id: 3292, Properties: map[string]string{"east": "up", "north": "none", "power": "2", "south": "none", "west": "none"}}, {Id: 3293, Properties: map[string]string{"east": "up", "north": "none", "power": "3", "south": "up", "west": "up"}}, {Id: 3294, Properties: map[string]string{"east": "up", "north": "none", "power": "3", "south": "up", "west": "side"}}, {Id: 3295, Properties: map[string]string{"east": "up", "north": "none", "power": "3", "south": "up", "west": "none"}}, {Id: 3296, Properties: map[string]string{"east": "up", "north": "none", "power": "3", "south": "side", "west": "up"}}, {Id: 3297, Properties: map[string]string{"east": "up", "north": "none", "power": "3", "south": "side", "west": "side"}}, {Id: 3298, Properties: map[string]string{"east": "up", "north": "none", "power": "3", "south": "side", "west": "none"}}, {Id: 3299, Properties: map[string]string{"east": "up", "north": "none", "power": "3", "south": "none", "west": "up"}}, {Id: 3300, Properties: map[string]string{"east": "up", "north": "none", "power": "3", "south": "none", "west": "side"}}, {Id: 3301, Properties: map[string]string{"east": "up", "north": "none", "power": "3", "south": "none", "west": "none"}}, {Id: 3302, Properties: map[string]string{"east": "up", "north": "none", "power": "4", "south": "up", "west": "up"}}, {Id: 3303, Properties: map[string]string{"east": "up", "north": "none", "power": "4", "south": "up", "west": "side"}}, {Id: 3304, Properties: map[string]string{"east": "up", "north": "none", "power": "4", "south": "up", "west": "none"}}, {Id: 3305, Properties: map[string]string{"east": "up", "north": "none", "power": "4", "south": "side", "west": "up"}}, {Id: 3306, Properties: map[string]string{"east": "up", "north": "none", "power": "4", "south": "side", "west": "side"}}, {Id: 3307, Properties: map[string]string{"east": "up", "north": "none", "power": "4", "south": "side", "west": "none"}}, {Id: 3308, Properties: map[string]string{"east": "up", "north": "none", "power": "4", "south": "none", "west": "up"}}, {Id: 3309, Properties: map[string]string{"east": "up", "north": "none", "power": "4", "south": "none", "west": "side"}}, {Id: 3310, Properties: map[string]string{"east": "up", "north": "none", "power": "4", "south": "none", "west": "none"}}, {Id: 3311, Properties: map[string]string{"east": "up", "north": "none", "power": "5", "south": "up", "west": "up"}}, {Id: 3312, Properties: map[string]string{"east": "up", "north": "none", "power": "5", "south": "up", "west": "side"}}, {Id: 3313, Properties: map[string]string{"east": "up", "north": "none", "power": "5", "south": "up", "west": "none"}}, {Id: 3314, Properties: map[string]string{"east": "up", "north": "none", "power": "5", "south": "side", "west": "up"}}, {Id: 3315, Properties: map[string]string{"east": "up", "north": "none", "power": "5", "south": "side", "west": "side"}}, {Id: 3316, Properties: map[string]string{"east": "up", "north": "none", "power": "5", "south": "side", "west": "none"}}, {Id: 3317, Properties: map[string]string{"east": "up", "north": "none", "power": "5", "south": "none", "west": "up"}}, {Id: 3318, Properties: map[string]string{"east": "up", "north": "none", "power": "5", "south": "none", "west": "side"}}, {Id: 3319, Properties: map[string]string{"east": "up", "north": "none", "power": "5", "south": "none", "west": "none"}}, {Id: 3320, Properties: map[string]string{"east": "up", "north": "none", "power": "6", "south": "up", "west": "up"}}, {Id: 3321, Properties: map[string]string{"east": "up", "north": "none", "power": "6", "south": "up", "west": "side"}}, {Id: 3322, Properties: map[string]string{"east": "up", "north": "none", "power": "6", "south": "up", "west": "none"}}, {Id: 3323, Properties: map[string]string{"east": "up", "north": "none", "power": "6", "south": "side", "west": "up"}}, {Id: 3324, Properties: map[string]string{"east": "up", "north": "none", "power": "6", "south": "side", "west": "side"}}, {Id: 3325, Properties: map[string]string{"east": "up", "north": "none", "power": "6", "south": "side", "west": "none"}}, {Id: 3326, Properties: map[string]string{"east": "up", "north": "none", "power": "6", "south": "none", "west": "up"}}, {Id: 3327, Properties: map[string]string{"east": "up", "north": "none", "power": "6", "south": "none", "west": "side"}}, {Id: 3328, Properties: map[string]string{"east": "up", "north": "none", "power": "6", "south": "none", "west": "none"}}, {Id: 3329, Properties: map[string]string{"east": "up", "north": "none", "power": "7", "south": "up", "west": "up"}}, {Id: 3330, Properties: map[string]string{"east": "up", "north": "none", "power": "7", "south": "up", "west": "side"}}, {Id: 3331, Properties: map[string]string{"east": "up", "north": "none", "power": "7", "south": "up", "west": "none"}}, {Id: 3332, Properties: map[string]string{"east": "up", "north": "none", "power": "7", "south": "side", "west": "up"}}, {Id: 3333, Properties: map[string]string{"east": "up", "north": "none", "power": "7", "south": "side", "west": "side"}}, {Id: 3334, Properties: map[string]string{"east": "up", "north": "none", "power": "7", "south": "side", "west": "none"}}, {Id: 3335, Properties: map[string]string{"east": "up", "north": "none", "power": "7", "south": "none", "west": "up"}}, {Id: 3336, Properties: map[string]string{"east": "up", "north": "none", "power": "7", "south": "none", "west": "side"}}, {Id: 3337, Properties: map[string]string{"east": "up", "north": "none", "power": "7", "south": "none", "west": "none"}}, {Id: 3338, Properties: map[string]string{"east": "up", "north": "none", "power": "8", "south": "up", "west": "up"}}, {Id: 3339, Properties: map[string]string{"east": "up", "north": "none", "power": "8", "south": "up", "west": "side"}}, {Id: 3340, Properties: map[string]string{"east": "up", "north": "none", "power": "8", "south": "up", "west": "none"}}, {Id: 3341, Properties: map[string]string{"east": "up", "north": "none", "power": "8", "south": "side", "west": "up"}}, {Id: 3342, Properties: map[string]string{"east": "up", "north": "none", "power": "8", "south": "side", "west": "side"}}, {Id: 3343, Properties: map[string]string{"east": "up", "north": "none", "power": "8", "south": "side", "west": "none"}}, {Id: 3344, Properties: map[string]string{"east": "up", "north": "none", "power": "8", "south": "none", "west": "up"}}, {Id: 3345, Properties: map[string]string{"east": "up", "north": "none", "power": "8", "south": "none", "west": "side"}}, {Id: 3346, Properties: map[string]string{"east": "up", "north": "none", "power": "8", "south": "none", "west": "none"}}, {Id: 3347, Properties: map[string]string{"east": "up", "north": "none", "power": "9", "south": "up", "west": "up"}}, {Id: 3348, Properties: map[string]string{"east": "up", "north": "none", "power": "9", "south": "up", "west": "side"}}, {Id: 3349, Properties: map[string]string{"east": "up", "north": "none", "power": "9", "south": "up", "west": "none"}}, {Id: 3350, Properties: map[string]string{"east": "up", "north": "none", "power": "9", "south": "side", "west": "up"}}, {Id: 3351, Properties: map[string]string{"east": "up", "north": "none", "power": "9", "south": "side", "west": "side"}}, {Id: 3352, Properties: map[string]string{"east": "up", "north": "none", "power": "9", "south": "side", "west": "none"}}, {Id: 3353, Properties: map[string]string{"east": "up", "north": "none", "power": "9", "south": "none", "west": "up"}}, {Id: 3354, Properties: map[string]string{"east": "up", "north": "none", "power": "9", "south": "none", "west": "side"}}, {Id: 3355, Properties: map[string]string{"east": "up", "north": "none", "power": "9", "south": "none", "west": "none"}}, {Id: 3356, Properties: map[string]string{"east": "up", "north": "none", "power": "10", "south": "up", "west": "up"}}, {Id: 3357, Properties: map[string]string{"east": "up", "north": "none", "power": "10", "south": "up", "west": "side"}}, {Id: 3358, Properties: map[string]string{"east": "up", "north": "none", "power": "10", "south": "up", "west": "none"}}, {Id: 3359, Properties: map[string]string{"east": "up", "north": "none", "power": "10", "south": "side", "west": "up"}}, {Id: 3360, Properties: map[string]string{"east": "up", "north": "none", "power": "10", "south": "side", "west": "side"}}, {Id: 3361, Properties: map[string]string{"east": "up", "north": "none", "power": "10", "south": "side", "west": "none"}}, {Id: 3362, Properties: map[string]string{"east": "up", "north": "none", "power": "10", "south": "none", "west": "up"}}, {Id: 3363, Properties: map[string]string{"east": "up", "north": "none", "power": "10", "south": "none", "west": "side"}}, {Id: 3364, Properties: map[string]string{"east": "up", "north": "none", "power": "10", "south": "none", "west": "none"}}, {Id: 3365, Properties: map[string]string{"east": "up", "north": "none", "power": "11", "south": "up", "west": "up"}}, {Id: 3366, Properties: map[string]string{"east": "up", "north": "none", "power": "11", "south": "up", "west": "side"}}, {Id: 3367, Properties: map[string]string{"east": "up", "north": "none", "power": "11", "south": "up", "west": "none"}}, {Id: 3368, Properties: map[string]string{"east": "up", "north": "none", "power": "11", "south": "side", "west": "up"}}, {Id: 3369, Properties: map[string]string{"east": "up", "north": "none", "power": "11", "south": "side", "west": "side"}}, {Id: 3370, Properties: map[string]string{"east": "up", "north": "none", "power": "11", "south": "side", "west": "none"}}, {Id: 3371, Properties: map[string]string{"east": "up", "north": "none", "power": "11", "south": "none", "west": "up"}}, {Id: 3372, Properties: map[string]string{"east": "up", "north": "none", "power": "11", "south": "none", "west": "side"}}, {Id: 3373, Properties: map[string]string{"east": "up", "north": "none", "power": "11", "south": "none", "west": "none"}}, {Id: 3374, Properties: map[string]string{"east": "up", "north": "none", "power": "12", "south": "up", "west": "up"}}, {Id: 3375, Properties: map[string]string{"east": "up", "north": "none", "power": "12", "south": "up", "west": "side"}}, {Id: 3376, Properties: map[string]string{"east": "up", "north": "none", "power": "12", "south": "up", "west": "none"}}, {Id: 3377, Properties: map[string]string{"east": "up", "north": "none", "power": "12", "south": "side", "west": "up"}}, {Id: 3378, Properties: map[string]string{"east": "up", "north": "none", "power": "12", "south": "side", "west": "side"}}, {Id: 3379, Properties: map[string]string{"east": "up", "north": "none", "power": "12", "south": "side", "west": "none"}}, {Id: 3380, Properties: map[string]string{"east": "up", "north": "none", "power": "12", "south": "none", "west": "up"}}, {Id: 3381, Properties: map[string]string{"east": "up", "north": "none", "power": "12", "south": "none", "west": "side"}}, {Id: 3382, Properties: map[string]string{"east": "up", "north": "none", "power": "12", "south": "none", "west": "none"}}, {Id: 3383, Properties: map[string]string{"east": "up", "north": "none", "power": "13", "south": "up", "west": "up"}}, {Id: 3384, Properties: map[string]string{"east": "up", "north": "none", "power": "13", "south": "up", "west": "side"}}, {Id: 3385, Properties: map[string]string{"east": "up", "north": "none", "power": "13", "south": "up", "west": "none"}}, {Id: 3386, Properties: map[string]string{"east": "up", "north": "none", "power": "13", "south": "side", "west": "up"}}, {Id: 3387, Properties: map[string]string{"east": "up", "north": "none", "power": "13", "south": "side", "west": "side"}}, {Id: 3388, Properties: map[string]string{"east": "up", "north": "none", "power": "13", "south": "side", "west": "none"}}, {Id: 3389, Properties: map[string]string{"east": "up", "north": "none", "power": "13", "south": "none", "west": "up"}}, {Id: 3390, Properties: map[string]string{"east": "up", "north": "none", "power": "13", "south": "none", "west": "side"}}, {Id: 3391, Properties: map[string]string{"east": "up", "north": "none", "power": "13", "south": "none", "west": "none"}}, {Id: 3392, Properties: map[string]string{"east": "up", "north": "none", "power": "14", "south": "up", "west": "up"}}, {Id: 3393, Properties: map[string]string{"east": "up", "north": "none", "power": "14", "south": "up", "west": "side"}}, {Id: 3394, Properties: map[string]string{"east": "up", "north": "none", "power": "14", "south": "up", "west": "none"}}, {Id: 3395, Properties: map[string]string{"east": "up", "north": "none", "power": "14", "south": "side", "west": "up"}}, {Id: 3396, Properties: map[string]string{"east": "up", "north": "none", "power": "14", "south": "side", "west": "side"}}, {Id: 3397, Properties: map[string]string{"east": "up", "north": "none", "power": "14", "south": "side", "west": "none"}}, {Id: 3398, Properties: map[string]string{"east": "up", "north": "none", "power": "14", "south": "none", "west": "up"}}, {Id: 3399, Properties: map[string]string{"east": "up", "north": "none", "power": "14", "south": "none", "west": "side"}}, {Id: 3400, Properties: map[string]string{"east": "up", "north": "none", "power": "14", "south": "none", "west": "none"}}, {Id: 3401, Properties: map[string]string{"east": "up", "north": "none", "power": "15", "south": "up", "west": "up"}}, {Id: 3402, Properties: map[string]string{"east": "up", "north": "none", "power": "15", "south": "up", "west": "side"}}, {Id: 3403, Properties: map[string]string{"east": "up", "north": "none", "power": "15", "south": "up", "west": "none"}}, {Id: 3404, Properties: map[string]string{"east": "up", "north": "none", "power": "15", "south": "side", "west": "up"}}, {Id: 3405, Properties: map[string]string{"east": "up", "north": "none", "power": "15", "south": "side", "west": "side"}}, {Id: 3406, Properties: map[string]string{"east": "up", "north": "none", "power": "15", "south": "side", "west": "none"}}, {Id: 3407, Properties: map[string]string{"east": "up", "north": "none", "power": "15", "south": "none", "west": "up"}}, {Id: 3408, Properties: map[string]string{"east": "up", "north": "none", "power": "15", "south": "none", "west": "side"}}, {Id: 3409, Properties: map[string]string{"east": "up", "north": "none", "power": "15", "south": "none", "west": "none"}}, {Id: 3410, Properties: map[string]string{"east": "side", "north": "up", "power": "0", "south": "up", "west": "up"}}, {Id: 3411, Properties: map[string]string{"east": "side", "north": "up", "power": "0", "south": "up", "west": "side"}}, {Id: 3412, Properties: map[string]string{"east": "side", "north": "up", "power": "0", "south": "up", "west": "none"}}, {Id: 3413, Properties: map[string]string{"east": "side", "north": "up", "power": "0", "south": "side", "west": "up"}}, {Id: 3414, Properties: map[string]string{"east": "side", "north": "up", "power": "0", "south": "side", "west": "side"}}, {Id: 3415, Properties: map[string]string{"east": "side", "north": "up", "power": "0", "south": "side", "west": "none"}}, {Id: 3416, Properties: map[string]string{"east": "side", "north": "up", "power": "0", "south": "none", "west": "up"}}, {Id: 3417, Properties: map[string]string{"east": "side", "north": "up", "power": "0", "south": "none", "west": "side"}}, {Id: 3418, Properties: map[string]string{"east": "side", "north": "up", "power": "0", "south": "none", "west": "none"}}, {Id: 3419, Properties: map[string]string{"east": "side", "north": "up", "power": "1", "south": "up", "west": "up"}}, {Id: 3420, Properties: map[string]string{"east": "side", "north": "up", "power": "1", "south": "up", "west": "side"}}, {Id: 3421, Properties: map[string]string{"east": "side", "north": "up", "power": "1", "south": "up", "west": "none"}}, {Id: 3422, Properties: map[string]string{"east": "side", "north": "up", "power": "1", "south": "side", "west": "up"}}, {Id: 3423, Properties: map[string]string{"east": "side", "north": "up", "power": "1", "south": "side", "west": "side"}}, {Id: 3424, Properties: map[string]string{"east": "side", "north": "up", "power": "1", "south": "side", "west": "none"}}, {Id: 3425, Properties: map[string]string{"east": "side", "north": "up", "power": "1", "south": "none", "west": "up"}}, {Id: 3426, Properties: map[string]string{"east": "side", "north": "up", "power": "1", "south": "none", "west": "side"}}, {Id: 3427, Properties: map[string]string{"east": "side", "north": "up", "power": "1", "south": "none", "west": "none"}}, {Id: 3428, Properties: map[string]string{"east": "side", "north": "up", "power": "2", "south": "up", "west": "up"}}, {Id: 3429, Properties: map[string]string{"east": "side", "north": "up", "power": "2", "south": "up", "west": "side"}}, {Id: 3430, Properties: map[string]string{"east": "side", "north": "up", "power": "2", "south": "up", "west": "none"}}, {Id: 3431, Properties: map[string]string{"east": "side", "north": "up", "power": "2", "south": "side", "west": "up"}}, {Id: 3432, Properties: map[string]string{"east": "side", "north": "up", "power": "2", "south": "side", "west": "side"}}, {Id: 3433, Properties: map[string]string{"east": "side", "north": "up", "power": "2", "south": "side", "west": "none"}}, {Id: 3434, Properties: map[string]string{"east": "side", "north": "up", "power": "2", "south": "none", "west": "up"}}, {Id: 3435, Properties: map[string]string{"east": "side", "north": "up", "power": "2", "south": "none", "west": "side"}}, {Id: 3436, Properties: map[string]string{"east": "side", "north": "up", "power": "2", "south": "none", "west": "none"}}, {Id: 3437, Properties: map[string]string{"east": "side", "north": "up", "power": "3", "south": "up", "west": "up"}}, {Id: 3438, Properties: map[string]string{"east": "side", "north": "up", "power": "3", "south": "up", "west": "side"}}, {Id: 3439, Properties: map[string]string{"east": "side", "north": "up", "power": "3", "south": "up", "west": "none"}}, {Id: 3440, Properties: map[string]string{"east": "side", "north": "up", "power": "3", "south": "side", "west": "up"}}, {Id: 3441, Properties: map[string]string{"east": "side", "north": "up", "power": "3", "south": "side", "west": "side"}}, {Id: 3442, Properties: map[string]string{"east": "side", "north": "up", "power": "3", "south": "side", "west": "none"}}, {Id: 3443, Properties: map[string]string{"east": "side", "north": "up", "power": "3", "south": "none", "west": "up"}}, {Id: 3444, Properties: map[string]string{"east": "side", "north": "up", "power": "3", "south": "none", "west": "side"}}, {Id: 3445, Properties: map[string]string{"east": "side", "north": "up", "power": "3", "south": "none", "west": "none"}}, {Id: 3446, Properties: map[string]string{"east": "side", "north": "up", "power": "4", "south": "up", "west": "up"}}, {Id: 3447, Properties: map[string]string{"east": "side", "north": "up", "power": "4", "south": "up", "west": "side"}}, {Id: 3448, Properties: map[string]string{"east": "side", "north": "up", "power": "4", "south": "up", "west": "none"}}, {Id: 3449, Properties: map[string]string{"east": "side", "north": "up", "power": "4", "south": "side", "west": "up"}}, {Id: 3450, Properties: map[string]string{"east": "side", "north": "up", "power": "4", "south": "side", "west": "side"}}, {Id: 3451, Properties: map[string]string{"east": "side", "north": "up", "power": "4", "south": "side", "west": "none"}}, {Id: 3452, Properties: map[string]string{"east": "side", "north": "up", "power": "4", "south": "none", "west": "up"}}, {Id: 3453, Properties: map[string]string{"east": "side", "north": "up", "power": "4", "south": "none", "west": "side"}}, {Id: 3454, Properties: map[string]string{"east": "side", "north": "up", "power": "4", "south": "none", "west": "none"}}, {Id: 3455, Properties: map[string]string{"east": "side", "north": "up", "power": "5", "south": "up", "west": "up"}}, {Id: 3456, Properties: map[string]string{"east": "side", "north": "up", "power": "5", "south": "up", "west": "side"}}, {Id: 3457, Properties: map[string]string{"east": "side", "north": "up", "power": "5", "south": "up", "west": "none"}}, {Id: 3458, Properties: map[string]string{"east": "side", "north": "up", "power": "5", "south": "side", "west": "up"}}, {Id: 3459, Properties: map[string]string{"east": "side", "north": "up", "power": "5", "south": "side", "west": "side"}}, {Id: 3460, Properties: map[string]string{"east": "side", "north": "up", "power": "5", "south": "side", "west": "none"}}, {Id: 3461, Properties: map[string]string{"east": "side", "north": "up", "power": "5", "south": "none", "west": "up"}}, {Id: 3462, Properties: map[string]string{"east": "side", "north": "up", "power": "5", "south": "none", "west": "side"}}, {Id: 3463, Properties: map[string]string{"east": "side", "north": "up", "power": "5", "south": "none", "west": "none"}}, {Id: 3464, Properties: map[string]string{"east": "side", "north": "up", "power": "6", "south": "up", "west": "up"}}, {Id: 3465, Properties: map[string]string{"east": "side", "north": "up", "power": "6", "south": "up", "west": "side"}}, {Id: 3466, Properties: map[string]string{"east": "side", "north": "up", "power": "6", "south": "up", "west": "none"}}, {Id: 3467, Properties: map[string]string{"east": "side", "north": "up", "power": "6", "south": "side", "west": "up"}}, {Id: 3468, Properties: map[string]string{"east": "side", "north": "up", "power": "6", "south": "side", "west": "side"}}, {Id: 3469, Properties: map[string]string{"east": "side", "north": "up", "power": "6", "south": "side", "west": "none"}}, {Id: 3470, Properties: map[string]string{"east": "side", "north": "up", "power": "6", "south": "none", "west": "up"}}, {Id: 3471, Properties: map[string]string{"east": "side", "north": "up", "power": "6", "south": "none", "west": "side"}}, {Id: 3472, Properties: map[string]string{"east": "side", "north": "up", "power": "6", "south": "none", "west": "none"}}, {Id: 3473, Properties: map[string]string{"east": "side", "north": "up", "power": "7", "south": "up", "west": "up"}}, {Id: 3474, Properties: map[string]string{"east": "side", "north": "up", "power": "7", "south": "up", "west": "side"}}, {Id: 3475, Properties: map[string]string{"east": "side", "north": "up", "power": "7", "south": "up", "west": "none"}}, {Id: 3476, Properties: map[string]string{"east": "side", "north": "up", "power": "7", "south": "side", "west": "up"}}, {Id: 3477, Properties: map[string]string{"east": "side", "north": "up", "power": "7", "south": "side", "west": "side"}}, {Id: 3478, Properties: map[string]string{"east": "side", "north": "up", "power": "7", "south": "side", "west": "none"}}, {Id: 3479, Properties: map[string]string{"east": "side", "north": "up", "power": "7", "south": "none", "west": "up"}}, {Id: 3480, Properties: map[string]string{"east": "side", "north": "up", "power": "7", "south": "none", "west": "side"}}, {Id: 3481, Properties: map[string]string{"east": "side", "north": "up", "power": "7", "south": "none", "west": "none"}}, {Id: 3482, Properties: map[string]string{"east": "side", "north": "up", "power": "8", "south": "up", "west": "up"}}, {Id: 3483, Properties: map[string]string{"east": "side", "north": "up", "power": "8", "south": "up", "west": "side"}}, {Id: 3484, Properties: map[string]string{"east": "side", "north": "up", "power": "8", "south": "up", "west": "none"}}, {Id: 3485, Properties: map[string]string{"east": "side", "north": "up", "power": "8", "south": "side", "west": "up"}}, {Id: 3486, Properties: map[string]string{"east": "side", "north": "up", "power": "8", "south": "side", "west": "side"}}, {Id: 3487, Properties: map[string]string{"east": "side", "north": "up", "power": "8", "south": "side", "west": "none"}}, {Id: 3488, Properties: map[string]string{"east": "side", "north": "up", "power": "8", "south": "none", "west": "up"}}, {Id: 3489, Properties: map[string]string{"east": "side", "north": "up", "power": "8", "south": "none", "west": "side"}}, {Id: 3490, Properties: map[string]string{"east": "side", "north": "up", "power": "8", "south": "none", "west": "none"}}, {Id: 3491, Properties: map[string]string{"east": "side", "north": "up", "power": "9", "south": "up", "west": "up"}}, {Id: 3492, Properties: map[string]string{"east": "side", "north": "up", "power": "9", "south": "up", "west": "side"}}, {Id: 3493, Properties: map[string]string{"east": "side", "north": "up", "power": "9", "south": "up", "west": "none"}}, {Id: 3494, Properties: map[string]string{"east": "side", "north": "up", "power": "9", "south": "side", "west": "up"}}, {Id: 3495, Properties: map[string]string{"east": "side", "north": "up", "power": "9", "south": "side", "west": "side"}}, {Id: 3496, Properties: map[string]string{"east": "side", "north": "up", "power": "9", "south": "side", "west": "none"}}, {Id: 3497, Properties: map[string]string{"east": "side", "north": "up", "power": "9", "south": "none", "west": "up"}}, {Id: 3498, Properties: map[string]string{"east": "side", "north": "up", "power": "9", "south": "none", "west": "side"}}, {Id: 3499, Properties: map[string]string{"east": "side", "north": "up", "power": "9", "south": "none", "west": "none"}}, {Id: 3500, Properties: map[string]string{"east": "side", "north": "up", "power": "10", "south": "up", "west": "up"}}, {Id: 3501, Properties: map[string]string{"east": "side", "north": "up", "power": "10", "south": "up", "west": "side"}}, {Id: 3502, Properties: map[string]string{"east": "side", "north": "up", "power": "10", "south": "up", "west": "none"}}, {Id: 3503, Properties: map[string]string{"east": "side", "north": "up", "power": "10", "south": "side", "west": "up"}}, {Id: 3504, Properties: map[string]string{"east": "side", "north": "up", "power": "10", "south": "side", "west": "side"}}, {Id: 3505, Properties: map[string]string{"east": "side", "north": "up", "power": "10", "south": "side", "west": "none"}}, {Id: 3506, Properties: map[string]string{"east": "side", "north": "up", "power": "10", "south": "none", "west": "up"}}, {Id: 3507, Properties: map[string]string{"east": "side", "north": "up", "power": "10", "south": "none", "west": "side"}}, {Id: 3508, Properties: map[string]string{"east": "side", "north": "up", "power": "10", "south": "none", "west": "none"}}, {Id: 3509, Properties: map[string]string{"east": "side", "north": "up", "power": "11", "south": "up", "west": "up"}}, {Id: 3510, Properties: map[string]string{"east": "side", "north": "up", "power": "11", "south": "up", "west": "side"}}, {Id: 3511, Properties: map[string]string{"east": "side", "north": "up", "power": "11", "south": "up", "west": "none"}}, {Id: 3512, Properties: map[string]string{"east": "side", "north": "up", "power": "11", "south": "side", "west": "up"}}, {Id: 3513, Properties: map[string]string{"east": "side", "north": "up", "power": "11", "south": "side", "west": "side"}}, {Id: 3514, Properties: map[string]string{"east": "side", "north": "up", "power": "11", "south": "side", "west": "none"}}, {Id: 3515, Properties: map[string]string{"east": "side", "north": "up", "power": "11", "south": "none", "west": "up"}}, {Id: 3516, Properties: map[string]string{"east": "side", "north": "up", "power": "11", "south": "none", "west": "side"}}, {Id: 3517, Properties: map[string]string{"east": "side", "north": "up", "power": "11", "south": "none", "west": "none"}}, {Id: 3518, Properties: map[string]string{"east": "side", "north": "up", "power": "12", "south": "up", "west": "up"}}, {Id: 3519, Properties: map[string]string{"east": "side", "north": "up", "power": "12", "south": "up", "west": "side"}}, {Id: 3520, Properties: map[string]string{"east": "side", "north": "up", "power": "12", "south": "up", "west": "none"}}, {Id: 3521, Properties: map[string]string{"east": "side", "north": "up", "power": "12", "south": "side", "west": "up"}}, {Id: 3522, Properties: map[string]string{"east": "side", "north": "up", "power": "12", "south": "side", "west": "side"}}, {Id: 3523, Properties: map[string]string{"east": "side", "north": "up", "power": "12", "south": "side", "west": "none"}}, {Id: 3524, Properties: map[string]string{"east": "side", "north": "up", "power": "12", "south": "none", "west": "up"}}, {Id: 3525, Properties: map[string]string{"east": "side", "north": "up", "power": "12", "south": "none", "west": "side"}}, {Id: 3526, Properties: map[string]string{"east": "side", "north": "up", "power": "12", "south": "none", "west": "none"}}, {Id: 3527, Properties: map[string]string{"east": "side", "north": "up", "power": "13", "south": "up", "west": "up"}}, {Id: 3528, Properties: map[string]string{"east": "side", "north": "up", "power": "13", "south": "up", "west": "side"}}, {Id: 3529, Properties: map[string]string{"east": "side", "north": "up", "power": "13", "south": "up", "west": "none"}}, {Id: 3530, Properties: map[string]string{"east": "side", "north": "up", "power": "13", "south": "side", "west": "up"}}, {Id: 3531, Properties: map[string]string{"east": "side", "north": "up", "power": "13", "south": "side", "west": "side"}}, {Id: 3532, Properties: map[string]string{"east": "side", "north": "up", "power": "13", "south": "side", "west": "none"}}, {Id: 3533, Properties: map[string]string{"east": "side", "north": "up", "power": "13", "south": "none", "west": "up"}}, {Id: 3534, Properties: map[string]string{"east": "side", "north": "up", "power": "13", "south": "none", "west": "side"}}, {Id: 3535, Properties: map[string]string{"east": "side", "north": "up", "power": "13", "south": "none", "west": "none"}}, {Id: 3536, Properties: map[string]string{"east": "side", "north": "up", "power": "14", "south": "up", "west": "up"}}, {Id: 3537, Properties: map[string]string{"east": "side", "north": "up", "power": "14", "south": "up", "west": "side"}}, {Id: 3538, Properties: map[string]string{"east": "side", "north": "up", "power": "14", "south": "up", "west": "none"}}, {Id: 3539, Properties: map[string]string{"east": "side", "north": "up", "power": "14", "south": "side", "west": "up"}}, {Id: 3540, Properties: map[string]string{"east": "side", "north": "up", "power": "14", "south": "side", "west": "side"}}, {Id: 3541, Properties: map[string]string{"east": "side", "north": "up", "power": "14", "south": "side", "west": "none"}}, {Id: 3542, Properties: map[string]string{"east": "side", "north": "up", "power": "14", "south": "none", "west": "up"}}, {Id: 3543, Properties: map[string]string{"east": "side", "north": "up", "power": "14", "south": "none", "west": "side"}}, {Id: 3544, Properties: map[string]string{"east": "side", "north": "up", "power": "14", "south": "none", "west": "none"}}, {Id: 3545, Properties: map[string]string{"east": "side", "north": "up", "power": "15", "south": "up", "west": "up"}}, {Id: 3546, Properties: map[string]string{"east": "side", "north": "up", "power": "15", "south": "up", "west": "side"}}, {Id: 3547, Properties: map[string]string{"east": "side", "north": "up", "power": "15", "south": "up", "west": "none"}}, {Id: 3548, Properties: map[string]string{"east": "side", "north": "up", "power": "15", "south": "side", "west": "up"}}, {Id: 3549, Properties: map[string]string{"east": "side", "north": "up", "power": "15", "south": "side", "west": "side"}}, {Id: 3550, Properties: map[string]string{"east": "side", "north": "up", "power": "15", "south": "side", "west": "none"}}, {Id: 3551, Properties: map[string]string{"east": "side", "north": "up", "power": "15", "south": "none", "west": "up"}}, {Id: 3552, Properties: map[string]string{"east": "side", "north": "up", "power": "15", "south": "none", "west": "side"}}, {Id: 3553, Properties: map[string]string{"east": "side", "north": "up", "power": "15", "south": "none", "west": "none"}}, {Id: 3554, Properties: map[string]string{"east": "side", "north": "side", "power": "0", "south": "up", "west": "up"}}, {Id: 3555, Properties: map[string]string{"east": "side", "north": "side", "power": "0", "south": "up", "west": "side"}}, {Id: 3556, Properties: map[string]string{"east": "side", "north": "side", "power": "0", "south": "up", "west": "none"}}, {Id: 3557, Properties: map[string]string{"east": "side", "north": "side", "power": "0", "south": "side", "west": "up"}}, {Id: 3558, Properties: map[string]string{"east": "side", "north": "side", "power": "0", "south": "side", "west": "side"}}, {Id: 3559, Properties: map[string]string{"east": "side", "north": "side", "power": "0", "south": "side", "west": "none"}}, {Id: 3560, Properties: map[string]string{"east": "side", "north": "side", "power": "0", "south": "none", "west": "up"}}, {Id: 3561, Properties: map[string]string{"east": "side", "north": "side", "power": "0", "south": "none", "west": "side"}}, {Id: 3562, Properties: map[string]string{"east": "side", "north": "side", "power": "0", "south": "none", "west": "none"}}, {Id: 3563, Properties: map[string]string{"east": "side", "north": "side", "power": "1", "south": "up", "west": "up"}}, {Id: 3564, Properties: map[string]string{"east": "side", "north": "side", "power": "1", "south": "up", "west": "side"}}, {Id: 3565, Properties: map[string]string{"east": "side", "north": "side", "power": "1", "south": "up", "west": "none"}}, {Id: 3566, Properties: map[string]string{"east": "side", "north": "side", "power": "1", "south": "side", "west": "up"}}, {Id: 3567, Properties: map[string]string{"east": "side", "north": "side", "power": "1", "south": "side", "west": "side"}}, {Id: 3568, Properties: map[string]string{"east": "side", "north": "side", "power": "1", "south": "side", "west": "none"}}, {Id: 3569, Properties: map[string]string{"east": "side", "north": "side", "power": "1", "south": "none", "west": "up"}}, {Id: 3570, Properties: map[string]string{"east": "side", "north": "side", "power": "1", "south": "none", "west": "side"}}, {Id: 3571, Properties: map[string]string{"east": "side", "north": "side", "power": "1", "south": "none", "west": "none"}}, {Id: 3572, Properties: map[string]string{"east": "side", "north": "side", "power": "2", "south": "up", "west": "up"}}, {Id: 3573, Properties: map[string]string{"east": "side", "north": "side", "power": "2", "south": "up", "west": "side"}}, {Id: 3574, Properties: map[string]string{"east": "side", "north": "side", "power": "2", "south": "up", "west": "none"}}, {Id: 3575, Properties: map[string]string{"east": "side", "north": "side", "power": "2", "south": "side", "west": "up"}}, {Id: 3576, Properties: map[string]string{"east": "side", "north": "side", "power": "2", "south": "side", "west": "side"}}, {Id: 3577, Properties: map[string]string{"east": "side", "north": "side", "power": "2", "south": "side", "west": "none"}}, {Id: 3578, Properties: map[string]string{"east": "side", "north": "side", "power": "2", "south": "none", "west": "up"}}, {Id: 3579, Properties: map[string]string{"east": "side", "north": "side", "power": "2", "south": "none", "west": "side"}}, {Id: 3580, Properties: map[string]string{"east": "side", "north": "side", "power": "2", "south": "none", "west": "none"}}, {Id: 3581, Properties: map[string]string{"east": "side", "north": "side", "power": "3", "south": "up", "west": "up"}}, {Id: 3582, Properties: map[string]string{"east": "side", "north": "side", "power": "3", "south": "up", "west": "side"}}, {Id: 3583, Properties: map[string]string{"east": "side", "north": "side", "power": "3", "south": "up", "west": "none"}}, {Id: 3584, Properties: map[string]string{"east": "side", "north": "side", "power": "3", "south": "side", "west": "up"}}, {Id: 3585, Properties: map[string]string{"east": "side", "north": "side", "power": "3", "south": "side", "west": "side"}}, {Id: 3586, Properties: map[string]string{"east": "side", "north": "side", "power": "3", "south": "side", "west": "none"}}, {Id: 3587, Properties: map[string]string{"east": "side", "north": "side", "power": "3", "south": "none", "west": "up"}}, {Id: 3588, Properties: map[string]string{"east": "side", "north": "side", "power": "3", "south": "none", "west": "side"}}, {Id: 3589, Properties: map[string]string{"east": "side", "north": "side", "power": "3", "south": "none", "west": "none"}}, {Id: 3590, Properties: map[string]string{"east": "side", "north": "side", "power": "4", "south": "up", "west": "up"}}, {Id: 3591, Properties: map[string]string{"east": "side", "north": "side", "power": "4", "south": "up", "west": "side"}}, {Id: 3592, Properties: map[string]string{"east": "side", "north": "side", "power": "4", "south": "up", "west": "none"}}, {Id: 3593, Properties: map[string]string{"east": "side", "north": "side", "power": "4", "south": "side", "west": "up"}}, {Id: 3594, Properties: map[string]string{"east": "side", "north": "side", "power": "4", "south": "side", "west": "side"}}, {Id: 3595, Properties: map[string]string{"east": "side", "north": "side", "power": "4", "south": "side", "west": "none"}}, {Id: 3596, Properties: map[string]string{"east": "side", "north": "side", "power": "4", "south": "none", "west": "up"}}, {Id: 3597, Properties: map[string]string{"east": "side", "north": "side", "power": "4", "south": "none", "west": "side"}}, {Id: 3598, Properties: map[string]string{"east": "side", "north": "side", "power": "4", "south": "none", "west": "none"}}, {Id: 3599, Properties: map[string]string{"east": "side", "north": "side", "power": "5", "south": "up", "west": "up"}}, {Id: 3600, Properties: map[string]string{"east": "side", "north": "side", "power": "5", "south": "up", "west": "side"}}, {Id: 3601, Properties: map[string]string{"east": "side", "north": "side", "power": "5", "south": "up", "west": "none"}}, {Id: 3602, Properties: map[string]string{"east": "side", "north": "side", "power": "5", "south": "side", "west": "up"}}, {Id: 3603, Properties: map[string]string{"east": "side", "north": "side", "power": "5", "south": "side", "west": "side"}}, {Id: 3604, Properties: map[string]string{"east": "side", "north": "side", "power": "5", "south": "side", "west": "none"}}, {Id: 3605, Properties: map[string]string{"east": "side", "north": "side", "power": "5", "south": "none", "west": "up"}}, {Id: 3606, Properties: map[string]string{"east": "side", "north": "side", "power": "5", "south": "none", "west": "side"}}, {Id: 3607, Properties: map[string]string{"east": "side", "north": "side", "power": "5", "south": "none", "west": "none"}}, {Id: 3608, Properties: map[string]string{"east": "side", "north": "side", "power": "6", "south": "up", "west": "up"}}, {Id: 3609, Properties: map[string]string{"east": "side", "north": "side", "power": "6", "south": "up", "west": "side"}}, {Id: 3610, Properties: map[string]string{"east": "side", "north": "side", "power": "6", "south": "up", "west": "none"}}, {Id: 3611, Properties: map[string]string{"east": "side", "north": "side", "power": "6", "south": "side", "west": "up"}}, {Id: 3612, Properties: map[string]string{"east": "side", "north": "side", "power": "6", "south": "side", "west": "side"}}, {Id: 3613, Properties: map[string]string{"east": "side", "north": "side", "power": "6", "south": "side", "west": "none"}}, {Id: 3614, Properties: map[string]string{"east": "side", "north": "side", "power": "6", "south": "none", "west": "up"}}, {Id: 3615, Properties: map[string]string{"east": "side", "north": "side", "power": "6", "south": "none", "west": "side"}}, {Id: 3616, Properties: map[string]string{"east": "side", "north": "side", "power": "6", "south": "none", "west": "none"}}, {Id: 3617, Properties: map[string]string{"east": "side", "north": "side", "power": "7", "south": "up", "west": "up"}}, {Id: 3618, Properties: map[string]string{"east": "side", "north": "side", "power": "7", "south": "up", "west": "side"}}, {Id: 3619, Properties: map[string]string{"east": "side", "north": "side", "power": "7", "south": "up", "west": "none"}}, {Id: 3620, Properties: map[string]string{"east": "side", "north": "side", "power": "7", "south": "side", "west": "up"}}, {Id: 3621, Properties: map[string]string{"east": "side", "north": "side", "power": "7", "south": "side", "west": "side"}}, {Id: 3622, Properties: map[string]string{"east": "side", "north": "side", "power": "7", "south": "side", "west": "none"}}, {Id: 3623, Properties: map[string]string{"east": "side", "north": "side", "power": "7", "south": "none", "west": "up"}}, {Id: 3624, Properties: map[string]string{"east": "side", "north": "side", "power": "7", "south": "none", "west": "side"}}, {Id: 3625, Properties: map[string]string{"east": "side", "north": "side", "power": "7", "south": "none", "west": "none"}}, {Id: 3626, Properties: map[string]string{"east": "side", "north": "side", "power": "8", "south": "up", "west": "up"}}, {Id: 3627, Properties: map[string]string{"east": "side", "north": "side", "power": "8", "south": "up", "west": "side"}}, {Id: 3628, Properties: map[string]string{"east": "side", "north": "side", "power": "8", "south": "up", "west": "none"}}, {Id: 3629, Properties: map[string]string{"east": "side", "north": "side", "power": "8", "south": "side", "west": "up"}}, {Id: 3630, Properties: map[string]string{"east": "side", "north": "side", "power": "8", "south": "side", "west": "side"}}, {Id: 3631, Properties: map[string]string{"east": "side", "north": "side", "power": "8", "south": "side", "west": "none"}}, {Id: 3632, Properties: map[string]string{"east": "side", "north": "side", "power": "8", "south": "none", "west": "up"}}, {Id: 3633, Properties: map[string]string{"east": "side", "north": "side", "power": "8", "south": "none", "west": "side"}}, {Id: 3634, Properties: map[string]string{"east": "side", "north": "side", "power": "8", "south": "none", "west": "none"}}, {Id: 3635, Properties: map[string]string{"east": "side", "north": "side", "power": "9", "south": "up", "west": "up"}}, {Id: 3636, Properties: map[string]string{"east": "side", "north": "side", "power": "9", "south": "up", "west": "side"}}, {Id: 3637, Properties: map[string]string{"east": "side", "north": "side", "power": "9", "south": "up", "west": "none"}}, {Id: 3638, Properties: map[string]string{"east": "side", "north": "side", "power": "9", "south": "side", "west": "up"}}, {Id: 3639, Properties: map[string]string{"east": "side", "north": "side", "power": "9", "south": "side", "west": "side"}}, {Id: 3640, Properties: map[string]string{"east": "side", "north": "side", "power": "9", "south": "side", "west": "none"}}, {Id: 3641, Properties: map[string]string{"east": "side", "north": "side", "power": "9", "south": "none", "west": "up"}}, {Id: 3642, Properties: map[string]string{"east": "side", "north": "side", "power": "9", "south": "none", "west": "side"}}, {Id: 3643, Properties: map[string]string{"east": "side", "north": "side", "power": "9", "south": "none", "west": "none"}}, {Id: 3644, Properties: map[string]string{"east": "side", "north": "side", "power": "10", "south": "up", "west": "up"}}, {Id: 3645, Properties: map[string]string{"east": "side", "north": "side", "power": "10", "south": "up", "west": "side"}}, {Id: 3646, Properties: map[string]string{"east": "side", "north": "side", "power": "10", "south": "up", "west": "none"}}, {Id: 3647, Properties: map[string]string{"east": "side", "north": "side", "power": "10", "south": "side", "west": "up"}}, {Id: 3648, Properties: map[string]string{"east": "side", "north": "side", "power": "10", "south": "side", "west": "side"}}, {Id: 3649, Properties: map[string]string{"east": "side", "north": "side", "power": "10", "south": "side", "west": "none"}}, {Id: 3650, Properties: map[string]string{"east": "side", "north": "side", "power": "10", "south": "none", "west": "up"}}, {Id: 3651, Properties: map[string]string{"east": "side", "north": "side", "power": "10", "south": "none", "west": "side"}}, {Id: 3652, Properties: map[string]string{"east": "side", "north": "side", "power": "10", "south": "none", "west": "none"}}, {Id: 3653, Properties: map[string]string{"east": "side", "north": "side", "power": "11", "south": "up", "west": "up"}}, {Id: 3654, Properties: map[string]string{"east": "side", "north": "side", "power": "11", "south": "up", "west": "side"}}, {Id: 3655, Properties: map[string]string{"east": "side", "north": "side", "power": "11", "south": "up", "west": "none"}}, {Id: 3656, Properties: map[string]string{"east": "side", "north": "side", "power": "11", "south": "side", "west": "up"}}, {Id: 3657, Properties: map[string]string{"east": "side", "north": "side", "power": "11", "south": "side", "west": "side"}}, {Id: 3658, Properties: map[string]string{"east": "side", "north": "side", "power": "11", "south": "side", "west": "none"}}, {Id: 3659, Properties: map[string]string{"east": "side", "north": "side", "power": "11", "south": "none", "west": "up"}}, {Id: 3660, Properties: map[string]string{"east": "side", "north": "side", "power": "11", "south": "none", "west": "side"}}, {Id: 3661, Properties: map[string]string{"east": "side", "north": "side", "power": "11", "south": "none", "west": "none"}}, {Id: 3662, Properties: map[string]string{"east": "side", "north": "side", "power": "12", "south": "up", "west": "up"}}, {Id: 3663, Properties: map[string]string{"east": "side", "north": "side", "power": "12", "south": "up", "west": "side"}}, {Id: 3664, Properties: map[string]string{"east": "side", "north": "side", "power": "12", "south": "up", "west": "none"}}, {Id: 3665, Properties: map[string]string{"east": "side", "north": "side", "power": "12", "south": "side", "west": "up"}}, {Id: 3666, Properties: map[string]string{"east": "side", "north": "side", "power": "12", "south": "side", "west": "side"}}, {Id: 3667, Properties: map[string]string{"east": "side", "north": "side", "power": "12", "south": "side", "west": "none"}}, {Id: 3668, Properties: map[string]string{"east": "side", "north": "side", "power": "12", "south": "none", "west": "up"}}, {Id: 3669, Properties: map[string]string{"east": "side", "north": "side", "power": "12", "south": "none", "west": "side"}}, {Id: 3670, Properties: map[string]string{"east": "side", "north": "side", "power": "12", "south": "none", "west": "none"}}, {Id: 3671, Properties: map[string]string{"east": "side", "north": "side", "power": "13", "south": "up", "west": "up"}}, {Id: 3672, Properties: map[string]string{"east": "side", "north": "side", "power": "13", "south": "up", "west": "side"}}, {Id: 3673, Properties: map[string]string{"east": "side", "north": "side", "power": "13", "south": "up", "west": "none"}}, {Id: 3674, Properties: map[string]string{"east": "side", "north": "side", "power": "13", "south": "side", "west": "up"}}, {Id: 3675, Properties: map[string]string{"east": "side", "north": "side", "power": "13", "south": "side", "west": "side"}}, {Id: 3676, Properties: map[string]string{"east": "side", "north": "side", "power": "13", "south": "side", "west": "none"}}, {Id: 3677, Properties: map[string]string{"east": "side", "north": "side", "power": "13", "south": "none", "west": "up"}}, {Id: 3678, Properties: map[string]string{"east": "side", "north": "side", "power": "13", "south": "none", "west": "side"}}, {Id: 3679, Properties: map[string]string{"east": "side", "north": "side", "power": "13", "south": "none", "west": "none"}}, {Id: 3680, Properties: map[string]string{"east": "side", "north": "side", "power": "14", "south": "up", "west": "up"}}, {Id: 3681, Properties: map[string]string{"east": "side", "north": "side", "power": "14", "south": "up", "west": "side"}}, {Id: 3682, Properties: map[string]string{"east": "side", "north": "side", "power": "14", "south": "up", "west": "none"}}, {Id: 3683, Properties: map[string]string{"east": "side", "north": "side", "power": "14", "south": "side", "west": "up"}}, {Id: 3684, Properties: map[string]string{"east": "side", "north": "side", "power": "14", "south": "side", "west": "side"}}, {Id: 3685, Properties: map[string]string{"east": "side", "north": "side", "power": "14", "south": "side", "west": "none"}}, {Id: 3686, Properties: map[string]string{"east": "side", "north": "side", "power": "14", "south": "none", "west": "up"}}, {Id: 3687, Properties: map[string]string{"east": "side", "north": "side", "power": "14", "south": "none", "west": "side"}}, {Id: 3688, Properties: map[string]string{"east": "side", "north": "side", "power": "14", "south": "none", "west": "none"}}, {Id: 3689, Properties: map[string]string{"east": "side", "north": "side", "power": "15", "south": "up", "west": "up"}}, {Id: 3690, Properties: map[string]string{"east": "side", "north": "side", "power": "15", "south": "up", "west": "side"}}, {Id: 3691, Properties: map[string]string{"east": "side", "north": "side", "power": "15", "south": "up", "west": "none"}}, {Id: 3692, Properties: map[string]string{"east": "side", "north": "side", "power": "15", "south": "side", "west": "up"}}, {Id: 3693, Properties: map[string]string{"east": "side", "north": "side", "power": "15", "south": "side", "west": "side"}}, {Id: 3694, Properties: map[string]string{"east": "side", "north": "side", "power": "15", "south": "side", "west": "none"}}, {Id: 3695, Properties: map[string]string{"east": "side", "north": "side", "power": "15", "south": "none", "west": "up"}}, {Id: 3696, Properties: map[string]string{"east": "side", "north": "side", "power": "15", "south": "none", "west": "side"}}, {Id: 3697, Properties: map[string]string{"east": "side", "north": "side", "power": "15", "south": "none", "west": "none"}}, {Id: 3698, Properties: map[string]string{"east": "side", "north": "none", "power": "0", "south": "up", "west": "up"}}, {Id: 3699, Properties: map[string]string{"east": "side", "north": "none", "power": "0", "south": "up", "west": "side"}}, {Id: 3700, Properties: map[string]string{"east": "side", "north": "none", "power": "0", "south": "up", "west": "none"}}, {Id: 3701, Properties: map[string]string{"east": "side", "north": "none", "power": "0", "south": "side", "west": "up"}}, {Id: 3702, Properties: map[string]string{"east": "side", "north": "none", "power": "0", "south": "side", "west": "side"}}, {Id: 3703, Properties: map[string]string{"east": "side", "north": "none", "power": "0", "south": "side", "west": "none"}}, {Id: 3704, Properties: map[string]string{"east": "side", "north": "none", "power": "0", "south": "none", "west": "up"}}, {Id: 3705, Properties: map[string]string{"east": "side", "north": "none", "power": "0", "south": "none", "west": "side"}}, {Id: 3706, Properties: map[string]string{"east": "side", "north": "none", "power": "0", "south": "none", "west": "none"}}, {Id: 3707, Properties: map[string]string{"east": "side", "north": "none", "power": "1", "south": "up", "west": "up"}}, {Id: 3708, Properties: map[string]string{"east": "side", "north": "none", "power": "1", "south": "up", "west": "side"}}, {Id: 3709, Properties: map[string]string{"east": "side", "north": "none", "power": "1", "south": "up", "west": "none"}}, {Id: 3710, Properties: map[string]string{"east": "side", "north": "none", "power": "1", "south": "side", "west": "up"}}, {Id: 3711, Properties: map[string]string{"east": "side", "north": "none", "power": "1", "south": "side", "west": "side"}}, {Id: 3712, Properties: map[string]string{"east": "side", "north": "none", "power": "1", "south": "side", "west": "none"}}, {Id: 3713, Properties: map[string]string{"east": "side", "north": "none", "power": "1", "south": "none", "west": "up"}}, {Id: 3714, Properties: map[string]string{"east": "side", "north": "none", "power": "1", "south": "none", "west": "side"}}, {Id: 3715, Properties: map[string]string{"east": "side", "north": "none", "power": "1", "south": "none", "west": "none"}}, {Id: 3716, Properties: map[string]string{"east": "side", "north": "none", "power": "2", "south": "up", "west": "up"}}, {Id: 3717, Properties: map[string]string{"east": "side", "north": "none", "power": "2", "south": "up", "west": "side"}}, {Id: 3718, Properties: map[string]string{"east": "side", "north": "none", "power": "2", "south": "up", "west": "none"}}, {Id: 3719, Properties: map[string]string{"east": "side", "north": "none", "power": "2", "south": "side", "west": "up"}}, {Id: 3720, Properties: map[string]string{"east": "side", "north": "none", "power": "2", "south": "side", "west": "side"}}, {Id: 3721, Properties: map[string]string{"east": "side", "north": "none", "power": "2", "south": "side", "west": "none"}}, {Id: 3722, Properties: map[string]string{"east": "side", "north": "none", "power": "2", "south": "none", "west": "up"}}, {Id: 3723, Properties: map[string]string{"east": "side", "north": "none", "power": "2", "south": "none", "west": "side"}}, {Id: 3724, Properties: map[string]string{"east": "side", "north": "none", "power": "2", "south": "none", "west": "none"}}, {Id: 3725, Properties: map[string]string{"east": "side", "north": "none", "power": "3", "south": "up", "west": "up"}}, {Id: 3726, Properties: map[string]string{"east": "side", "north": "none", "power": "3", "south": "up", "west": "side"}}, {Id: 3727, Properties: map[string]string{"east": "side", "north": "none", "power": "3", "south": "up", "west": "none"}}, {Id: 3728, Properties: map[string]string{"east": "side", "north": "none", "power": "3", "south": "side", "west": "up"}}, {Id: 3729, Properties: map[string]string{"east": "side", "north": "none", "power": "3", "south": "side", "west": "side"}}, {Id: 3730, Properties: map[string]string{"east": "side", "north": "none", "power": "3", "south": "side", "west": "none"}}, {Id: 3731, Properties: map[string]string{"east": "side", "north": "none", "power": "3", "south": "none", "west": "up"}}, {Id: 3732, Properties: map[string]string{"east": "side", "north": "none", "power": "3", "south": "none", "west": "side"}}, {Id: 3733, Properties: map[string]string{"east": "side", "north": "none", "power": "3", "south": "none", "west": "none"}}, {Id: 3734, Properties: map[string]string{"east": "side", "north": "none", "power": "4", "south": "up", "west": "up"}}, {Id: 3735, Properties: map[string]string{"east": "side", "north": "none", "power": "4", "south": "up", "west": "side"}}, {Id: 3736, Properties: map[string]string{"east": "side", "north": "none", "power": "4", "south": "up", "west": "none"}}, {Id: 3737, Properties: map[string]string{"east": "side", "north": "none", "power": "4", "south": "side", "west": "up"}}, {Id: 3738, Properties: map[string]string{"east": "side", "north": "none", "power": "4", "south": "side", "west": "side"}}, {Id: 3739, Properties: map[string]string{"east": "side", "north": "none", "power": "4", "south": "side", "west": "none"}}, {Id: 3740, Properties: map[string]string{"east": "side", "north": "none", "power": "4", "south": "none", "west": "up"}}, {Id: 3741, Properties: map[string]string{"east": "side", "north": "none", "power": "4", "south": "none", "west": "side"}}, {Id: 3742, Properties: map[string]string{"east": "side", "north": "none", "power": "4", "south": "none", "west": "none"}}, {Id: 3743, Properties: map[string]string{"east": "side", "north": "none", "power": "5", "south": "up", "west": "up"}}, {Id: 3744, Properties: map[string]string{"east": "side", "north": "none", "power": "5", "south": "up", "west": "side"}}, {Id: 3745, Properties: map[string]string{"east": "side", "north": "none", "power": "5", "south": "up", "west": "none"}}, {Id: 3746, Properties: map[string]string{"east": "side", "north": "none", "power": "5", "south": "side", "west": "up"}}, {Id: 3747, Properties: map[string]string{"east": "side", "north": "none", "power": "5", "south": "side", "west": "side"}}, {Id: 3748, Properties: map[string]string{"east": "side", "north": "none", "power": "5", "south": "side", "west": "none"}}, {Id: 3749, Properties: map[string]string{"east": "side", "north": "none", "power": "5", "south": "none", "west": "up"}}, {Id: 3750, Properties: map[string]string{"east": "side", "north": "none", "power": "5", "south": "none", "west": "side"}}, {Id: 3751, Properties: map[string]string{"east": "side", "north": "none", "power": "5", "south": "none", "west": "none"}}, {Id: 3752, Properties: map[string]string{"east": "side", "north": "none", "power": "6", "south": "up", "west": "up"}}, {Id: 3753, Properties: map[string]string{"east": "side", "north": "none", "power": "6", "south": "up", "west": "side"}}, {Id: 3754, Properties: map[string]string{"east": "side", "north": "none", "power": "6", "south": "up", "west": "none"}}, {Id: 3755, Properties: map[string]string{"east": "side", "north": "none", "power": "6", "south": "side", "west": "up"}}, {Id: 3756, Properties: map[string]string{"east": "side", "north": "none", "power": "6", "south": "side", "west": "side"}}, {Id: 3757, Properties: map[string]string{"east": "side", "north": "none", "power": "6", "south": "side", "west": "none"}}, {Id: 3758, Properties: map[string]string{"east": "side", "north": "none", "power": "6", "south": "none", "west": "up"}}, {Id: 3759, Properties: map[string]string{"east": "side", "north": "none", "power": "6", "south": "none", "west": "side"}}, {Id: 3760, Properties: map[string]string{"east": "side", "north": "none", "power": "6", "south": "none", "west": "none"}}, {Id: 3761, Properties: map[string]string{"east": "side", "north": "none", "power": "7", "south": "up", "west": "up"}}, {Id: 3762, Properties: map[string]string{"east": "side", "north": "none", "power": "7", "south": "up", "west": "side"}}, {Id: 3763, Properties: map[string]string{"east": "side", "north": "none", "power": "7", "south": "up", "west": "none"}}, {Id: 3764, Properties: map[string]string{"east": "side", "north": "none", "power": "7", "south": "side", "west": "up"}}, {Id: 3765, Properties: map[string]string{"east": "side", "north": "none", "power": "7", "south": "side", "west": "side"}}, {Id: 3766, Properties: map[string]string{"east": "side", "north": "none", "power": "7", "south": "side", "west": "none"}}, {Id: 3767, Properties: map[string]string{"east": "side", "north": "none", "power": "7", "south": "none", "west": "up"}}, {Id: 3768, Properties: map[string]string{"east": "side", "north": "none", "power": "7", "south": "none", "west": "side"}}, {Id: 3769, Properties: map[string]string{"east": "side", "north": "none", "power": "7", "south": "none", "west": "none"}}, {Id: 3770, Properties: map[string]string{"east": "side", "north": "none", "power": "8", "south": "up", "west": "up"}}, {Id: 3771, Properties: map[string]string{"east": "side", "north": "none", "power": "8", "south": "up", "west": "side"}}, {Id: 3772, Properties: map[string]string{"east": "side", "north": "none", "power": "8", "south": "up", "west": "none"}}, {Id: 3773, Properties: map[string]string{"east": "side", "north": "none", "power": "8", "south": "side", "west": "up"}}, {Id: 3774, Properties: map[string]string{"east": "side", "north": "none", "power": "8", "south": "side", "west": "side"}}, {Id: 3775, Properties: map[string]string{"east": "side", "north": "none", "power": "8", "south": "side", "west": "none"}}, {Id: 3776, Properties: map[string]string{"east": "side", "north": "none", "power": "8", "south": "none", "west": "up"}}, {Id: 3777, Properties: map[string]string{"east": "side", "north": "none", "power": "8", "south": "none", "west": "side"}}, {Id: 3778, Properties: map[string]string{"east": "side", "north": "none", "power": "8", "south": "none", "west": "none"}}, {Id: 3779, Properties: map[string]string{"east": "side", "north": "none", "power": "9", "south": "up", "west": "up"}}, {Id: 3780, Properties: map[string]string{"east": "side", "north": "none", "power": "9", "south": "up", "west": "side"}}, {Id: 3781, Properties: map[string]string{"east": "side", "north": "none", "power": "9", "south": "up", "west": "none"}}, {Id: 3782, Properties: map[string]string{"east": "side", "north": "none", "power": "9", "south": "side", "west": "up"}}, {Id: 3783, Properties: map[string]string{"east": "side", "north": "none", "power": "9", "south": "side", "west": "side"}}, {Id: 3784, Properties: map[string]string{"east": "side", "north": "none", "power": "9", "south": "side", "west": "none"}}, {Id: 3785, Properties: map[string]string{"east": "side", "north": "none", "power": "9", "south": "none", "west": "up"}}, {Id: 3786, Properties: map[string]string{"east": "side", "north": "none", "power": "9", "south": "none", "west": "side"}}, {Id: 3787, Properties: map[string]string{"east": "side", "north": "none", "power": "9", "south": "none", "west": "none"}}, {Id: 3788, Properties: map[string]string{"east": "side", "north": "none", "power": "10", "south": "up", "west": "up"}}, {Id: 3789, Properties: map[string]string{"east": "side", "north": "none", "power": "10", "south": "up", "west": "side"}}, {Id: 3790, Properties: map[string]string{"east": "side", "north": "none", "power": "10", "south": "up", "west": "none"}}, {Id: 3791, Properties: map[string]string{"east": "side", "north": "none", "power": "10", "south": "side", "west": "up"}}, {Id: 3792, Properties: map[string]string{"east": "side", "north": "none", "power": "10", "south": "side", "west": "side"}}, {Id: 3793, Properties: map[string]string{"east": "side", "north": "none", "power": "10", "south": "side", "west": "none"}}, {Id: 3794, Properties: map[string]string{"east": "side", "north": "none", "power": "10", "south": "none", "west": "up"}}, {Id: 3795, Properties: map[string]string{"east": "side", "north": "none", "power": "10", "south": "none", "west": "side"}}, {Id: 3796, Properties: map[string]string{"east": "side", "north": "none", "power": "10", "south": "none", "west": "none"}}, {Id: 3797, Properties: map[string]string{"east": "side", "north": "none", "power": "11", "south": "up", "west": "up"}}, {Id: 3798, Properties: map[string]string{"east": "side", "north": "none", "power": "11", "south": "up", "west": "side"}}, {Id: 3799, Properties: map[string]string{"east": "side", "north": "none", "power": "11", "south": "up", "west": "none"}}, {Id: 3800, Properties: map[string]string{"east": "side", "north": "none", "power": "11", "south": "side", "west": "up"}}, {Id: 3801, Properties: map[string]string{"east": "side", "north": "none", "power": "11", "south": "side", "west": "side"}}, {Id: 3802, Properties: map[string]string{"east": "side", "north": "none", "power": "11", "south": "side", "west": "none"}}, {Id: 3803, Properties: map[string]string{"east": "side", "north": "none", "power": "11", "south": "none", "west": "up"}}, {Id: 3804, Properties: map[string]string{"east": "side", "north": "none", "power": "11", "south": "none", "west": "side"}}, {Id: 3805, Properties: map[string]string{"east": "side", "north": "none", "power": "11", "south": "none", "west": "none"}}, {Id: 3806, Properties: map[string]string{"east": "side", "north": "none", "power": "12", "south": "up", "west": "up"}}, {Id: 3807, Properties: map[string]string{"east": "side", "north": "none", "power": "12", "south": "up", "west": "side"}}, {Id: 3808, Properties: map[string]string{"east": "side", "north": "none", "power": "12", "south": "up", "west": "none"}}, {Id: 3809, Properties: map[string]string{"east": "side", "north": "none", "power": "12", "south": "side", "west": "up"}}, {Id: 3810, Properties: map[string]string{"east": "side", "north": "none", "power": "12", "south": "side", "west": "side"}}, {Id: 3811, Properties: map[string]string{"east": "side", "north": "none", "power": "12", "south": "side", "west": "none"}}, {Id: 3812, Properties: map[string]string{"east": "side", "north": "none", "power": "12", "south": "none", "west": "up"}}, {Id: 3813, Properties: map[string]string{"east": "side", "north": "none", "power": "12", "south": "none", "west": "side"}}, {Id: 3814, Properties: map[string]string{"east": "side", "north": "none", "power": "12", "south": "none", "west": "none"}}, {Id: 3815, Properties: map[string]string{"east": "side", "north": "none", "power": "13", "south": "up", "west": "up"}}, {Id: 3816, Properties: map[string]string{"east": "side", "north": "none", "power": "13", "south": "up", "west": "side"}}, {Id: 3817, Properties: map[string]string{"east": "side", "north": "none", "power": "13", "south": "up", "west": "none"}}, {Id: 3818, Properties: map[string]string{"east": "side", "north": "none", "power": "13", "south": "side", "west": "up"}}, {Id: 3819, Properties: map[string]string{"east": "side", "north": "none", "power": "13", "south": "side", "west": "side"}}, {Id: 3820, Properties: map[string]string{"east": "side", "north": "none", "power": "13", "south": "side", "west": "none"}}, {Id: 3821, Properties: map[string]string{"east": "side", "north": "none", "power": "13", "south": "none", "west": "up"}}, {Id: 3822, Properties: map[string]string{"east": "side", "north": "none", "power": "13", "south": "none", "west": "side"}}, {Id: 3823, Properties: map[string]string{"east": "side", "north": "none", "power": "13", "south": "none", "west": "none"}}, {Id: 3824, Properties: map[string]string{"east": "side", "north": "none", "power": "14", "south": "up", "west": "up"}}, {Id: 3825, Properties: map[string]string{"east": "side", "north": "none", "power": "14", "south": "up", "west": "side"}}, {Id: 3826, Properties: map[string]string{"east": "side", "north": "none", "power": "14", "south": "up", "west": "none"}}, {Id: 3827, Properties: map[string]string{"east": "side", "north": "none", "power": "14", "south": "side", "west": "up"}}, {Id: 3828, Properties: map[string]string{"east": "side", "north": "none", "power": "14", "south": "side", "west": "side"}}, {Id: 3829, Properties: map[string]string{"east": "side", "north": "none", "power": "14", "south": "side", "west": "none"}}, {Id: 3830, Properties: map[string]string{"east": "side", "north": "none", "power": "14", "south": "none", "west": "up"}}, {Id: 3831, Properties: map[string]string{"east": "side", "north": "none", "power": "14", "south": "none", "west": "side"}}, {Id: 3832, Properties: map[string]string{"east": "side", "north": "none", "power": "14", "south": "none", "west": "none"}}, {Id: 3833, Properties: map[string]string{"east": "side", "north": "none", "power": "15", "south": "up", "west": "up"}}, {Id: 3834, Properties: map[string]string{"east": "side", "north": "none", "power": "15", "south": "up", "west": "side"}}, {Id: 3835, Properties: map[string]string{"east": "side", "north": "none", "power": "15", "south": "up", "west": "none"}}, {Id: 3836, Properties: map[string]string{"east": "side", "north": "none", "power": "15", "south": "side", "west": "up"}}, {Id: 3837, Properties: map[string]string{"east": "side", "north": "none", "power": "15", "south": "side", "west": "side"}}, {Id: 3838, Properties: map[string]string{"east": "side", "north": "none", "power": "15", "south": "side", "west": "none"}}, {Id: 3839, Properties: map[string]string{"east": "side", "north": "none", "power": "15", "south": "none", "west": "up"}}, {Id: 3840, Properties: map[string]string{"east": "side", "north": "none", "power": "15", "south": "none", "west": "side"}}, {Id: 3841, Properties: map[string]string{"east": "side", "north": "none", "power": "15", "south": "none", "west": "none"}}, {Id: 3842, Properties: map[string]string{"east": "none", "north": "up", "power": "0", "south": "up", "west": "up"}}, {Id: 3843, Properties: map[string]string{"east": "none", "north": "up", "power": "0", "south": "up", "west": "side"}}, {Id: 3844, Properties: map[string]string{"east": "none", "north": "up", "power": "0", "south": "up", "west": "none"}}, {Id: 3845, Properties: map[string]string{"east": "none", "north": "up", "power": "0", "south": "side", "west": "up"}}, {Id: 3846, Properties: map[string]string{"east": "none", "north": "up", "power": "0", "south": "side", "west": "side"}}, {Id: 3847, Properties: map[string]string{"east": "none", "north": "up", "power": "0", "south": "side", "west": "none"}}, {Id: 3848, Properties: map[string]string{"east": "none", "north": "up", "power": "0", "south": "none", "west": "up"}}, {Id: 3849, Properties: map[string]string{"east": "none", "north": "up", "power": "0", "south": "none", "west": "side"}}, {Id: 3850, Properties: map[string]string{"east": "none", "north": "up", "power": "0", "south": "none", "west": "none"}}, {Id: 3851, Properties: map[string]string{"east": "none", "north": "up", "power": "1", "south": "up", "west": "up"}}, {Id: 3852, Properties: map[string]string{"east": "none", "north": "up", "power": "1", "south": "up", "west": "side"}}, {Id: 3853, Properties: map[string]string{"east": "none", "north": "up", "power": "1", "south": "up", "west": "none"}}, {Id: 3854, Properties: map[string]string{"east": "none", "north": "up", "power": "1", "south": "side", "west": "up"}}, {Id: 3855, Properties: map[string]string{"east": "none", "north": "up", "power": "1", "south": "side", "west": "side"}}, {Id: 3856, Properties: map[string]string{"east": "none", "north": "up", "power": "1", "south": "side", "west": "none"}}, {Id: 3857, Properties: map[string]string{"east": "none", "north": "up", "power": "1", "south": "none", "west": "up"}}, {Id: 3858, Properties: map[string]string{"east": "none", "north": "up", "power": "1", "south": "none", "west": "side"}}, {Id: 3859, Properties: map[string]string{"east": "none", "north": "up", "power": "1", "south": "none", "west": "none"}}, {Id: 3860, Properties: map[string]string{"east": "none", "north": "up", "power": "2", "south": "up", "west": "up"}}, {Id: 3861, Properties: map[string]string{"east": "none", "north": "up", "power": "2", "south": "up", "west": "side"}}, {Id: 3862, Properties: map[string]string{"east": "none", "north": "up", "power": "2", "south": "up", "west": "none"}}, {Id: 3863, Properties: map[string]string{"east": "none", "north": "up", "power": "2", "south": "side", "west": "up"}}, {Id: 3864, Properties: map[string]string{"east": "none", "north": "up", "power": "2", "south": "side", "west": "side"}}, {Id: 3865, Properties: map[string]string{"east": "none", "north": "up", "power": "2", "south": "side", "west": "none"}}, {Id: 3866, Properties: map[string]string{"east": "none", "north": "up", "power": "2", "south": "none", "west": "up"}}, {Id: 3867, Properties: map[string]string{"east": "none", "north": "up", "power": "2", "south": "none", "west": "side"}}, {Id: 3868, Properties: map[string]string{"east": "none", "north": "up", "power": "2", "south": "none", "west": "none"}}, {Id: 3869, Properties: map[string]string{"east": "none", "north": "up", "power": "3", "south": "up", "west": "up"}}, {Id: 3870, Properties: map[string]string{"east": "none", "north": "up", "power": "3", "south": "up", "west": "side"}}, {Id: 3871, Properties: map[string]string{"east": "none", "north": "up", "power": "3", "south": "up", "west": "none"}}, {Id: 3872, Properties: map[string]string{"east": "none", "north": "up", "power": "3", "south": "side", "west": "up"}}, {Id: 3873, Properties: map[string]string{"east": "none", "north": "up", "power": "3", "south": "side", "west": "side"}}, {Id: 3874, Properties: map[string]string{"east": "none", "north": "up", "power": "3", "south": "side", "west": "none"}}, {Id: 3875, Properties: map[string]string{"east": "none", "north": "up", "power": "3", "south": "none", "west": "up"}}, {Id: 3876, Properties: map[string]string{"east": "none", "north": "up", "power": "3", "south": "none", "west": "side"}}, {Id: 3877, Properties: map[string]string{"east": "none", "north": "up", "power": "3", "south": "none", "west": "none"}}, {Id: 3878, Properties: map[string]string{"east": "none", "north": "up", "power": "4", "south": "up", "west": "up"}}, {Id: 3879, Properties: map[string]string{"east": "none", "north": "up", "power": "4", "south": "up", "west": "side"}}, {Id: 3880, Properties: map[string]string{"east": "none", "north": "up", "power": "4", "south": "up", "west": "none"}}, {Id: 3881, Properties: map[string]string{"east": "none", "north": "up", "power": "4", "south": "side", "west": "up"}}, {Id: 3882, Properties: map[string]string{"east": "none", "north": "up", "power": "4", "south": "side", "west": "side"}}, {Id: 3883, Properties: map[string]string{"east": "none", "north": "up", "power": "4", "south": "side", "west": "none"}}, {Id: 3884, Properties: map[string]string{"east": "none", "north": "up", "power": "4", "south": "none", "west": "up"}}, {Id: 3885, Properties: map[string]string{"east": "none", "north": "up", "power": "4", "south": "none", "west": "side"}}, {Id: 3886, Properties: map[string]string{"east": "none", "north": "up", "power": "4", "south": "none", "west": "none"}}, {Id: 3887, Properties: map[string]string{"east": "none", "north": "up", "power": "5", "south": "up", "west": "up"}}, {Id: 3888, Properties: map[string]string{"east": "none", "north": "up", "power": "5", "south": "up", "west": "side"}}, {Id: 3889, Properties: map[string]string{"east": "none", "north": "up", "power": "5", "south": "up", "west": "none"}}, {Id: 3890, Properties: map[string]string{"east": "none", "north": "up", "power": "5", "south": "side", "west": "up"}}, {Id: 3891, Properties: map[string]string{"east": "none", "north": "up", "power": "5", "south": "side", "west": "side"}}, {Id: 3892, Properties: map[string]string{"east": "none", "north": "up", "power": "5", "south": "side", "west": "none"}}, {Id: 3893, Properties: map[string]string{"east": "none", "north": "up", "power": "5", "south": "none", "west": "up"}}, {Id: 3894, Properties: map[string]string{"east": "none", "north": "up", "power": "5", "south": "none", "west": "side"}}, {Id: 3895, Properties: map[string]string{"east": "none", "north": "up", "power": "5", "south": "none", "west": "none"}}, {Id: 3896, Properties: map[string]string{"east": "none", "north": "up", "power": "6", "south": "up", "west": "up"}}, {Id: 3897, Properties: map[string]string{"east": "none", "north": "up", "power": "6", "south": "up", "west": "side"}}, {Id: 3898, Properties: map[string]string{"east": "none", "north": "up", "power": "6", "south": "up", "west": "none"}}, {Id: 3899, Properties: map[string]string{"east": "none", "north": "up", "power": "6", "south": "side", "west": "up"}}, {Id: 3900, Properties: map[string]string{"east": "none", "north": "up", "power": "6", "south": "side", "west": "side"}}, {Id: 3901, Properties: map[string]string{"east": "none", "north": "up", "power": "6", "south": "side", "west": "none"}}, {Id: 3902, Properties: map[string]string{"east": "none", "north": "up", "power": "6", "south": "none", "west": "up"}}, {Id: 3903, Properties: map[string]string{"east": "none", "north": "up", "power": "6", "south": "none", "west": "side"}}, {Id: 3904, Properties: map[string]string{"east": "none", "north": "up", "power": "6", "south": "none", "west": "none"}}, {Id: 3905, Properties: map[string]string{"east": "none", "north": "up", "power": "7", "south": "up", "west": "up"}}, {Id: 3906, Properties: map[string]string{"east": "none", "north": "up", "power": "7", "south": "up", "west": "side"}}, {Id: 3907, Properties: map[string]string{"east": "none", "north": "up", "power": "7", "south": "up", "west": "none"}}, {Id: 3908, Properties: map[string]string{"east": "none", "north": "up", "power": "7", "south": "side", "west": "up"}}, {Id: 3909, Properties: map[string]string{"east": "none", "north": "up", "power": "7", "south": "side", "west": "side"}}, {Id: 3910, Properties: map[string]string{"east": "none", "north": "up", "power": "7", "south": "side", "west": "none"}}, {Id: 3911, Properties: map[string]string{"east": "none", "north": "up", "power": "7", "south": "none", "west": "up"}}, {Id: 3912, Properties: map[string]string{"east": "none", "north": "up", "power": "7", "south": "none", "west": "side"}}, {Id: 3913, Properties: map[string]string{"east": "none", "north": "up", "power": "7", "south": "none", "west": "none"}}, {Id: 3914, Properties: map[string]string{"east": "none", "north": "up", "power": "8", "south": "up", "west": "up"}}, {Id: 3915, Properties: map[string]string{"east": "none", "north": "up", "power": "8", "south": "up", "west": "side"}}, {Id: 3916, Properties: map[string]string{"east": "none", "north": "up", "power": "8", "south": "up", "west": "none"}}, {Id: 3917, Properties: map[string]string{"east": "none", "north": "up", "power": "8", "south": "side", "west": "up"}}, {Id: 3918, Properties: map[string]string{"east": "none", "north": "up", "power": "8", "south": "side", "west": "side"}}, {Id: 3919, Properties: map[string]string{"east": "none", "north": "up", "power": "8", "south": "side", "west": "none"}}, {Id: 3920, Properties: map[string]string{"east": "none", "north": "up", "power": "8", "south": "none", "west": "up"}}, {Id: 3921, Properties: map[string]string{"east": "none", "north": "up", "power": "8", "south": "none", "west": "side"}}, {Id: 3922, Properties: map[string]string{"east": "none", "north": "up", "power": "8", "south": "none", "west": "none"}}, {Id: 3923, Properties: map[string]string{"east": "none", "north": "up", "power": "9", "south": "up", "west": "up"}}, {Id: 3924, Properties: map[string]string{"east": "none", "north": "up", "power": "9", "south": "up", "west": "side"}}, {Id: 3925, Properties: map[string]string{"east": "none", "north": "up", "power": "9", "south": "up", "west": "none"}}, {Id: 3926, Properties: map[string]string{"east": "none", "north": "up", "power": "9", "south": "side", "west": "up"}}, {Id: 3927, Properties: map[string]string{"east": "none", "north": "up", "power": "9", "south": "side", "west": "side"}}, {Id: 3928, Properties: map[string]string{"east": "none", "north": "up", "power": "9", "south": "side", "west": "none"}}, {Id: 3929, Properties: map[string]string{"east": "none", "north": "up", "power": "9", "south": "none", "west": "up"}}, {Id: 3930, Properties: map[string]string{"east": "none", "north": "up", "power": "9", "south": "none", "west": "side"}}, {Id: 3931, Properties: map[string]string{"east": "none", "north": "up", "power": "9", "south": "none", "west": "none"}}, {Id: 3932, Properties: map[string]string{"east": "none", "north": "up", "power": "10", "south": "up", "west": "up"}}, {Id: 3933, Properties: map[string]string{"east": "none", "north": "up", "power": "10", "south": "up", "west": "side"}}, {Id: 3934, Properties: map[string]string{"east": "none", "north": "up", "power": "10", "south": "up", "west": "none"}}, {Id: 3935, Properties: map[string]string{"east": "none", "north": "up", "power": "10", "south": "side", "west": "up"}}, {Id: 3936, Properties: map[string]string{"east": "none", "north": "up", "power": "10", "south": "side", "west": "side"}}, {Id: 3937, Properties: map[string]string{"east": "none", "north": "up", "power": "10", "south": "side", "west": "none"}}, {Id: 3938, Properties: map[string]string{"east": "none", "north": "up", "power": "10", "south": "none", "west": "up"}}, {Id: 3939, Properties: map[string]string{"east": "none", "north": "up", "power": "10", "south": "none", "west": "side"}}, {Id: 3940, Properties: map[string]string{"east": "none", "north": "up", "power": "10", "south": "none", "west": "none"}}, {Id: 3941, Properties: map[string]string{"east": "none", "north": "up", "power": "11", "south": "up", "west": "up"}}, {Id: 3942, Properties: map[string]string{"east": "none", "north": "up", "power": "11", "south": "up", "west": "side"}}, {Id: 3943, Properties: map[string]string{"east": "none", "north": "up", "power": "11", "south": "up", "west": "none"}}, {Id: 3944, Properties: map[string]string{"east": "none", "north": "up", "power": "11", "south": "side", "west": "up"}}, {Id: 3945, Properties: map[string]string{"east": "none", "north": "up", "power": "11", "south": "side", "west": "side"}}, {Id: 3946, Properties: map[string]string{"east": "none", "north": "up", "power": "11", "south": "side", "west": "none"}}, {Id: 3947, Properties: map[string]string{"east": "none", "north": "up", "power": "11", "south": "none", "west": "up"}}, {Id: 3948, Properties: map[string]string{"east": "none", "north": "up", "power": "11", "south": "none", "west": "side"}}, {Id: 3949, Properties: map[string]string{"east": "none", "north": "up", "power": "11", "south": "none", "west": "none"}}, {Id: 3950, Properties: map[string]string{"east": "none", "north": "up", "power": "12", "south": "up", "west": "up"}}, {Id: 3951, Properties: map[string]string{"east": "none", "north": "up", "power": "12", "south": "up", "west": "side"}}, {Id: 3952, Properties: map[string]string{"east": "none", "north": "up", "power": "12", "south": "up", "west": "none"}}, {Id: 3953, Properties: map[string]string{"east": "none", "north": "up", "power": "12", "south": "side", "west": "up"}}, {Id: 3954, Properties: map[string]string{"east": "none", "north": "up", "power": "12", "south": "side", "west": "side"}}, {Id: 3955, Properties: map[string]string{"east": "none", "north": "up", "power": "12", "south": "side", "west": "none"}}, {Id: 3956, Properties: map[string]string{"east": "none", "north": "up", "power": "12", "south": "none", "west": "up"}}, {Id: 3957, Properties: map[string]string{"east": "none", "north": "up", "power": "12", "south": "none", "west": "side"}}, {Id: 3958, Properties: map[string]string{"east": "none", "north": "up", "power": "12", "south": "none", "west": "none"}}, {Id: 3959, Properties: map[string]string{"east": "none", "north": "up", "power": "13", "south": "up", "west": "up"}}, {Id: 3960, Properties: map[string]string{"east": "none", "north": "up", "power": "13", "south": "up", "west": "side"}}, {Id: 3961, Properties: map[string]string{"east": "none", "north": "up", "power": "13", "south": "up", "west": "none"}}, {Id: 3962, Properties: map[string]string{"east": "none", "north": "up", "power": "13", "south": "side", "west": "up"}}, {Id: 3963, Properties: map[string]string{"east": "none", "north": "up", "power": "13", "south": "side", "west": "side"}}, {Id: 3964, Properties: map[string]string{"east": "none", "north": "up", "power": "13", "south": "side", "west": "none"}}, {Id: 3965, Properties: map[string]string{"east": "none", "north": "up", "power": "13", "south": "none", "west": "up"}}, {Id: 3966, Properties: map[string]string{"east": "none", "north": "up", "power": "13", "south": "none", "west": "side"}}, {Id: 3967, Properties: map[string]string{"east": "none", "north": "up", "power": "13", "south": "none", "west": "none"}}, {Id: 3968, Properties: map[string]string{"east": "none", "north": "up", "power": "14", "south": "up", "west": "up"}}, {Id: 3969, Properties: map[string]string{"east": "none", "north": "up", "power": "14", "south": "up", "west": "side"}}, {Id: 3970, Properties: map[string]string{"east": "none", "north": "up", "power": "14", "south": "up", "west": "none"}}, {Id: 3971, Properties: map[string]string{"east": "none", "north": "up", "power": "14", "south": "side", "west": "up"}}, {Id: 3972, Properties: map[string]string{"east": "none", "north": "up", "power": "14", "south": "side", "west": "side"}}, {Id: 3973, Properties: map[string]string{"east": "none", "north": "up", "power": "14", "south": "side", "west": "none"}}, {Id: 3974, Properties: map[string]string{"east": "none", "north": "up", "power": "14", "south": "none", "west": "up"}}, {Id: 3975, Properties: map[string]string{"east": "none", "north": "up", "power": "14", "south": "none", "west": "side"}}, {Id: 3976, Properties: map[string]string{"east": "none", "north": "up", "power": "14", "south": "none", "west": "none"}}, {Id: 3977, Properties: map[string]string{"east": "none", "north": "up", "power": "15", "south": "up", "west": "up"}}, {Id: 3978, Properties: map[string]string{"east": "none", "north": "up", "power": "15", "south": "up", "west": "side"}}, {Id: 3979, Properties: map[string]string{"east": "none", "north": "up", "power": "15", "south": "up", "west": "none"}}, {Id: 3980, Properties: map[string]string{"east": "none", "north": "up", "power": "15", "south": "side", "west": "up"}}, {Id: 3981, Properties: map[string]string{"east": "none", "north": "up", "power": "15", "south": "side", "west": "side"}}, {Id: 3982, Properties: map[string]string{"east": "none", "north": "up", "power": "15", "south": "side", "west": "none"}}, {Id: 3983, Properties: map[string]string{"east": "none", "north": "up", "power": "15", "south": "none", "west": "up"}}, {Id: 3984, Properties: map[string]string{"east": "none", "north": "up", "power": "15", "south": "none", "west": "side"}}, {Id: 3985, Properties: map[string]string{"east": "none", "north": "up", "power": "15", "south": "none", "west": "none"}}, {Id: 3986, Properties: map[string]string{"east": "none", "north": "side", "power": "0", "south": "up", "west": "up"}}, {Id: 3987, Properties: map[string]string{"east": "none", "north": "side", "power": "0", "south": "up", "west": "side"}}, {Id: 3988, Properties: map[string]string{"east": "none", "north": "side", "power": "0", "south": "up", "west": "none"}}, {Id: 3989, Properties: map[string]string{"east": "none", "north": "side", "power": "0", "south": "side", "west": "up"}}, {Id: 3990, Properties: map[string]string{"east": "none", "north": "side", "power": "0", "south": "side", "west": "side"}}, {Id: 3991, Properties: map[string]string{"east": "none", "north": "side", "power": "0", "south": "side", "west": "none"}}, {Id: 3992, Properties: map[string]string{"east": "none", "north": "side", "power": "0", "south": "none", "west": "up"}}, {Id: 3993, Properties: map[string]string{"east": "none", "north": "side", "power": "0", "south": "none", "west": "side"}}, {Id: 3994, Properties: map[string]string{"east": "none", "north": "side", "power": "0", "south": "none", "west": "none"}}, {Id: 3995, Properties: map[string]string{"east": "none", "north": "side", "power": "1", "south": "up", "west": "up"}}, {Id: 3996, Properties: map[string]string{"east": "none", "north": "side", "power": "1", "south": "up", "west": "side"}}, {Id: 3997, Properties: map[string]string{"east": "none", "north": "side", "power": "1", "south": "up", "west": "none"}}, {Id: 3998, Properties: map[string]string{"east": "none", "north": "side", "power": "1", "south": "side", "west": "up"}}, {Id: 3999, Properties: map[string]string{"east": "none", "north": "side", "power": "1", "south": "side", "west": "side"}}, {Id: 4000, Properties: map[string]string{"east": "none", "north": "side", "power": "1", "south": "side", "west": "none"}}, {Id: 4001, Properties: map[string]string{"east": "none", "north": "side", "power": "1", "south": "none", "west": "up"}}, {Id: 4002, Properties: map[string]string{"east": "none", "north": "side", "power": "1", "south": "none", "west": "side"}}, {Id: 4003, Properties: map[string]string{"east": "none", "north": "side", "power": "1", "south": "none", "west": "none"}}, {Id: 4004, Properties: map[string]string{"east": "none", "north": "side", "power": "2", "south": "up", "west": "up"}}, {Id: 4005, Properties: map[string]string{"east": "none", "north": "side", "power": "2", "south": "up", "west": "side"}}, {Id: 4006, Properties: map[string]string{"east": "none", "north": "side", "power": "2", "south": "up", "west": "none"}}, {Id: 4007, Properties: map[string]string{"east": "none", "north": "side", "power": "2", "south": "side", "west": "up"}}, {Id: 4008, Properties: map[string]string{"east": "none", "north": "side", "power": "2", "south": "side", "west": "side"}}, {Id: 4009, Properties: map[string]string{"east": "none", "north": "side", "power": "2", "south": "side", "west": "none"}}, {Id: 4010, Properties: map[string]string{"east": "none", "north": "side", "power": "2", "south": "none", "west": "up"}}, {Id: 4011, Properties: map[string]string{"east": "none", "north": "side", "power": "2", "south": "none", "west": "side"}}, {Id: 4012, Properties: map[string]string{"east": "none", "north": "side", "power": "2", "south": "none", "west": "none"}}, {Id: 4013, Properties: map[string]string{"east": "none", "north": "side", "power": "3", "south": "up", "west": "up"}}, {Id: 4014, Properties: map[string]string{"east": "none", "north": "side", "power": "3", "south": "up", "west": "side"}}, {Id: 4015, Properties: map[string]string{"east": "none", "north": "side", "power": "3", "south": "up", "west": "none"}}, {Id: 4016, Properties: map[string]string{"east": "none", "north": "side", "power": "3", "south": "side", "west": "up"}}, {Id: 4017, Properties: map[string]string{"east": "none", "north": "side", "power": "3", "south": "side", "west": "side"}}, {Id: 4018, Properties: map[string]string{"east": "none", "north": "side", "power": "3", "south": "side", "west": "none"}}, {Id: 4019, Properties: map[string]string{"east": "none", "north": "side", "power": "3", "south": "none", "west": "up"}}, {Id: 4020, Properties: map[string]string{"east": "none", "north": "side", "power": "3", "south": "none", "west": "side"}}, {Id: 4021, Properties: map[string]string{"east": "none", "north": "side", "power": "3", "south": "none", "west": "none"}}, {Id: 4022, Properties: map[string]string{"east": "none", "north": "side", "power": "4", "south": "up", "west": "up"}}, {Id: 4023, Properties: map[string]string{"east": "none", "north": "side", "power": "4", "south": "up", "west": "side"}}, {Id: 4024, Properties: map[string]string{"east": "none", "north": "side", "power": "4", "south": "up", "west": "none"}}, {Id: 4025, Properties: map[string]string{"east": "none", "north": "side", "power": "4", "south": "side", "west": "up"}}, {Id: 4026, Properties: map[string]string{"east": "none", "north": "side", "power": "4", "south": "side", "west": "side"}}, {Id: 4027, Properties: map[string]string{"east": "none", "north": "side", "power": "4", "south": "side", "west": "none"}}, {Id: 4028, Properties: map[string]string{"east": "none", "north": "side", "power": "4", "south": "none", "west": "up"}}, {Id: 4029, Properties: map[string]string{"east": "none", "north": "side", "power": "4", "south": "none", "west": "side"}}, {Id: 4030, Properties: map[string]string{"east": "none", "north": "side", "power": "4", "south": "none", "west": "none"}}, {Id: 4031, Properties: map[string]string{"east": "none", "north": "side", "power": "5", "south": "up", "west": "up"}}, {Id: 4032, Properties: map[string]string{"east": "none", "north": "side", "power": "5", "south": "up", "west": "side"}}, {Id: 4033, Properties: map[string]string{"east": "none", "north": "side", "power": "5", "south": "up", "west": "none"}}, {Id: 4034, Properties: map[string]string{"east": "none", "north": "side", "power": "5", "south": "side", "west": "up"}}, {Id: 4035, Properties: map[string]string{"east": "none", "north": "side", "power": "5", "south": "side", "west": "side"}}, {Id: 4036, Properties: map[string]string{"east": "none", "north": "side", "power": "5", "south": "side", "west": "none"}}, {Id: 4037, Properties: map[string]string{"east": "none", "north": "side", "power": "5", "south": "none", "west": "up"}}, {Id: 4038, Properties: map[string]string{"east": "none", "north": "side", "power": "5", "south": "none", "west": "side"}}, {Id: 4039, Properties: map[string]string{"east": "none", "north": "side", "power": "5", "south": "none", "west": "none"}}, {Id: 4040, Properties: map[string]string{"east": "none", "north": "side", "power": "6", "south": "up", "west": "up"}}, {Id: 4041, Properties: map[string]string{"east": "none", "north": "side", "power": "6", "south": "up", "west": "side"}}, {Id: 4042, Properties: map[string]string{"east": "none", "north": "side", "power": "6", "south": "up", "west": "none"}}, {Id: 4043, Properties: map[string]string{"east": "none", "north": "side", "power": "6", "south": "side", "west": "up"}}, {Id: 4044, Properties: map[string]string{"east": "none", "north": "side", "power": "6", "south": "side", "west": "side"}}, {Id: 4045, Properties: map[string]string{"east": "none", "north": "side", "power": "6", "south": "side", "west": "none"}}, {Id: 4046, Properties: map[string]string{"east": "none", "north": "side", "power": "6", "south": "none", "west": "up"}}, {Id: 4047, Properties: map[string]string{"east": "none", "north": "side", "power": "6", "south": "none", "west": "side"}}, {Id: 4048, Properties: map[string]string{"east": "none", "north": "side", "power": "6", "south": "none", "west": "none"}}, {Id: 4049, Properties: map[string]string{"east": "none", "north": "side", "power": "7", "south": "up", "west": "up"}}, {Id: 4050, Properties: map[string]string{"east": "none", "north": "side", "power": "7", "south": "up", "west": "side"}}, {Id: 4051, Properties: map[string]string{"east": "none", "north": "side", "power": "7", "south": "up", "west": "none"}}, {Id: 4052, Properties: map[string]string{"east": "none", "north": "side", "power": "7", "south": "side", "west": "up"}}, {Id: 4053, Properties: map[string]string{"east": "none", "north": "side", "power": "7", "south": "side", "west": "side"}}, {Id: 4054, Properties: map[string]string{"east": "none", "north": "side", "power": "7", "south": "side", "west": "none"}}, {Id: 4055, Properties: map[string]string{"east": "none", "north": "side", "power": "7", "south": "none", "west": "up"}}, {Id: 4056, Properties: map[string]string{"east": "none", "north": "side", "power": "7", "south": "none", "west": "side"}}, {Id: 4057, Properties: map[string]string{"east": "none", "north": "side", "power": "7", "south": "none", "west": "none"}}, {Id: 4058, Properties: map[string]string{"east": "none", "north": "side", "power": "8", "south": "up", "west": "up"}}, {Id: 4059, Properties: map[string]string{"east": "none", "north": "side", "power": "8", "south": "up", "west": "side"}}, {Id: 4060, Properties: map[string]string{"east": "none", "north": "side", "power": "8", "south": "up", "west": "none"}}, {Id: 4061, Properties: map[string]string{"east": "none", "north": "side", "power": "8", "south": "side", "west": "up"}}, {Id: 4062, Properties: map[string]string{"east": "none", "north": "side", "power": "8", "south": "side", "west": "side"}}, {Id: 4063, Properties: map[string]string{"east": "none", "north": "side", "power": "8", "south": "side", "west": "none"}}, {Id: 4064, Properties: map[string]string{"east": "none", "north": "side", "power": "8", "south": "none", "west": "up"}}, {Id: 4065, Properties: map[string]string{"east": "none", "north": "side", "power": "8", "south": "none", "west": "side"}}, {Id: 4066, Properties: map[string]string{"east": "none", "north": "side", "power": "8", "south": "none", "west": "none"}}, {Id: 4067, Properties: map[string]string{"east": "none", "north": "side", "power": "9", "south": "up", "west": "up"}}, {Id: 4068, Properties: map[string]string{"east": "none", "north": "side", "power": "9", "south": "up", "west": "side"}}, {Id: 4069, Properties: map[string]string{"east": "none", "north": "side", "power": "9", "south": "up", "west": "none"}}, {Id: 4070, Properties: map[string]string{"east": "none", "north": "side", "power": "9", "south": "side", "west": "up"}}, {Id: 4071, Properties: map[string]string{"east": "none", "north": "side", "power": "9", "south": "side", "west": "side"}}, {Id: 4072, Properties: map[string]string{"east": "none", "north": "side", "power": "9", "south": "side", "west": "none"}}, {Id: 4073, Properties: map[string]string{"east": "none", "north": "side", "power": "9", "south": "none", "west": "up"}}, {Id: 4074, Properties: map[string]string{"east": "none", "north": "side", "power": "9", "south": "none", "west": "side"}}, {Id: 4075, Properties: map[string]string{"east": "none", "north": "side", "power": "9", "south": "none", "west": "none"}}, {Id: 4076, Properties: map[string]string{"east": "none", "north": "side", "power": "10", "south": "up", "west": "up"}}, {Id: 4077, Properties: map[string]string{"east": "none", "north": "side", "power": "10", "south": "up", "west": "side"}}, {Id: 4078, Properties: map[string]string{"east": "none", "north": "side", "power": "10", "south": "up", "west": "none"}}, {Id: 4079, Properties: map[string]string{"east": "none", "north": "side", "power": "10", "south": "side", "west": "up"}}, {Id: 4080, Properties: map[string]string{"east": "none", "north": "side", "power": "10", "south": "side", "west": "side"}}, {Id: 4081, Properties: map[string]string{"east": "none", "north": "side", "power": "10", "south": "side", "west": "none"}}, {Id: 4082, Properties: map[string]string{"east": "none", "north": "side", "power": "10", "south": "none", "west": "up"}}, {Id: 4083, Properties: map[string]string{"east": "none", "north": "side", "power": "10", "south": "none", "west": "side"}}, {Id: 4084, Properties: map[string]string{"east": "none", "north": "side", "power": "10", "south": "none", "west": "none"}}, {Id: 4085, Properties: map[string]string{"east": "none", "north": "side", "power": "11", "south": "up", "west": "up"}}, {Id: 4086, Properties: map[string]string{"east": "none", "north": "side", "power": "11", "south": "up", "west": "side"}}, {Id: 4087, Properties: map[string]string{"east": "none", "north": "side", "power": "11", "south": "up", "west": "none"}}, {Id: 4088, Properties: map[string]string{"east": "none", "north": "side", "power": "11", "south": "side", "west": "up"}}, {Id: 4089, Properties: map[string]string{"east": "none", "north": "side", "power": "11", "south": "side", "west": "side"}}, {Id: 4090, Properties: map[string]string{"east": "none", "north": "side", "power": "11", "south": "side", "west": "none"}}, {Id: 4091, Properties: map[string]string{"east": "none", "north": "side", "power": "11", "south": "none", "west": "up"}}, {Id: 4092, Properties: map[string]string{"east": "none", "north": "side", "power": "11", "south": "none", "west": "side"}}, {Id: 4093, Properties: map[string]string{"east": "none", "north": "side", "power": "11", "south": "none", "west": "none"}}, {Id: 4094, Properties: map[string]string{"east": "none", "north": "side", "power": "12", "south": "up", "west": "up"}}, {Id: 4095, Properties: map[string]string{"east": "none", "north": "side", "power": "12", "south": "up", "west": "side"}}, {Id: 4096, Properties: map[string]string{"east": "none", "north": "side", "power": "12", "south": "up", "west": "none"}}, {Id: 4097, Properties: map[string]string{"east": "none", "north": "side", "power": "12", "south": "side", "west": "up"}}, {Id: 4098, Properties: map[string]string{"east": "none", "north": "side", "power": "12", "south": "side", "west": "side"}}, {Id: 4099, Properties: map[string]string{"east": "none", "north": "side", "power": "12", "south": "side", "west": "none"}}, {Id: 4100, Properties: map[string]string{"east": "none", "north": "side", "power": "12", "south": "none", "west": "up"}}, {Id: 4101, Properties: map[string]string{"east": "none", "north": "side", "power": "12", "south": "none", "west": "side"}}, {Id: 4102, Properties: map[string]string{"east": "none", "north": "side", "power": "12", "south": "none", "west": "none"}}, {Id: 4103, Properties: map[string]string{"east": "none", "north": "side", "power": "13", "south": "up", "west": "up"}}, {Id: 4104, Properties: map[string]string{"east": "none", "north": "side", "power": "13", "south": "up", "west": "side"}}, {Id: 4105, Properties: map[string]string{"east": "none", "north": "side", "power": "13", "south": "up", "west": "none"}}, {Id: 4106, Properties: map[string]string{"east": "none", "north": "side", "power": "13", "south": "side", "west": "up"}}, {Id: 4107, Properties: map[string]string{"east": "none", "north": "side", "power": "13", "south": "side", "west": "side"}}, {Id: 4108, Properties: map[string]string{"east": "none", "north": "side", "power": "13", "south": "side", "west": "none"}}, {Id: 4109, Properties: map[string]string{"east": "none", "north": "side", "power": "13", "south": "none", "west": "up"}}, {Id: 4110, Properties: map[string]string{"east": "none", "north": "side", "power": "13", "south": "none", "west": "side"}}, {Id: 4111, Properties: map[string]string{"east": "none", "north": "side", "power": "13", "south": "none", "west": "none"}}, {Id: 4112, Properties: map[string]string{"east": "none", "north": "side", "power": "14", "south": "up", "west": "up"}}, {Id: 4113, Properties: map[string]string{"east": "none", "north": "side", "power": "14", "south": "up", "west": "side"}}, {Id: 4114, Properties: map[string]string{"east": "none", "north": "side", "power": "14", "south": "up", "west": "none"}}, {Id: 4115, Properties: map[string]string{"east": "none", "north": "side", "power": "14", "south": "side", "west": "up"}}, {Id: 4116, Properties: map[string]string{"east": "none", "north": "side", "power": "14", "south": "side", "west": "side"}}, {Id: 4117, Properties: map[string]string{"east": "none", "north": "side", "power": "14", "south": "side", "west": "none"}}, {Id: 4118, Properties: map[string]string{"east": "none", "north": "side", "power": "14", "south": "none", "west": "up"}}, {Id: 4119, Properties: map[string]string{"east": "none", "north": "side", "power": "14", "south": "none", "west": "side"}}, {Id: 4120, Properties: map[string]string{"east": "none", "north": "side", "power": "14", "south": "none", "west": "none"}}, {Id: 4121, Properties: map[string]string{"east": "none", "north": "side", "power": "15", "south": "up", "west": "up"}}, {Id: 4122, Properties: map[string]string{"east": "none", "north": "side", "power": "15", "south": "up", "west": "side"}}, {Id: 4123, Properties: map[string]string{"east": "none", "north": "side", "power": "15", "south": "up", "west": "none"}}, {Id: 4124, Properties: map[string]string{"east": "none", "north": "side", "power": "15", "south": "side", "west": "up"}}, {Id: 4125, Properties: map[string]string{"east": "none", "north": "side", "power": "15", "south": "side", "west": "side"}}, {Id: 4126, Properties: map[string]string{"east": "none", "north": "side", "power": "15", "south": "side", "west": "none"}}, {Id: 4127, Properties: map[string]string{"east": "none", "north": "side", "power": "15", "south": "none", "west": "up"}}, {Id: 4128, Properties: map[string]string{"east": "none", "north": "side", "power": "15", "south": "none", "west": "side"}}, {Id: 4129, Properties: map[string]string{"east": "none", "north": "side", "power": "15", "south": "none", "west": "none"}}, {Id: 4130, Properties: map[string]string{"east": "none", "north": "none", "power": "0", "south": "up", "west": "up"}}, {Id: 4131, Properties: map[string]string{"east": "none", "north": "none", "power": "0", "south": "up", "west": "side"}}, {Id: 4132, Properties: map[string]string{"east": "none", "north": "none", "power": "0", "south": "up", "west": "none"}}, {Id: 4133, Properties: map[string]string{"east": "none", "north": "none", "power": "0", "south": "side", "west": "up"}}, {Id: 4134, Properties: map[string]string{"east": "none", "north": "none", "power": "0", "south": "side", "west": "side"}}, {Id: 4135, Properties: map[string]string{"east": "none", "north": "none", "power": "0", "south": "side", "west": "none"}}, {Id: 4136, Properties: map[string]string{"east": "none", "north": "none", "power": "0", "south": "none", "west": "up"}}, {Id: 4137, Properties: map[string]string{"east": "none", "north": "none", "power": "0", "south": "none", "west": "side"}}, {Id: 4138, Properties: map[string]string{"east": "none", "north": "none", "power": "0", "south": "none", "west": "none"}}, {Id: 4139, Properties: map[string]string{"east": "none", "north": "none", "power": "1", "south": "up", "west": "up"}}, {Id: 4140, Properties: map[string]string{"east": "none", "north": "none", "power": "1", "south": "up", "west": "side"}}, {Id: 4141, Properties: map[string]string{"east": "none", "north": "none", "power": "1", "south": "up", "west": "none"}}, {Id: 4142, Properties: map[string]string{"east": "none", "north": "none", "power": "1", "south": "side", "west": "up"}}, {Id: 4143, Properties: map[string]string{"east": "none", "north": "none", "power": "1", "south": "side", "west": "side"}}, {Id: 4144, Properties: map[string]string{"east": "none", "north": "none", "power": "1", "south": "side", "west": "none"}}, {Id: 4145, Properties: map[string]string{"east": "none", "north": "none", "power": "1", "south": "none", "west": "up"}}, {Id: 4146, Properties: map[string]string{"east": "none", "north": "none", "power": "1", "south": "none", "west": "side"}}, {Id: 4147, Properties: map[string]string{"east": "none", "north": "none", "power": "1", "south": "none", "west": "none"}}, {Id: 4148, Properties: map[string]string{"east": "none", "north": "none", "power": "2", "south": "up", "west": "up"}}, {Id: 4149, Properties: map[string]string{"east": "none", "north": "none", "power": "2", "south": "up", "west": "side"}}, {Id: 4150, Properties: map[string]string{"east": "none", "north": "none", "power": "2", "south": "up", "west": "none"}}, {Id: 4151, Properties: map[string]string{"east": "none", "north": "none", "power": "2", "south": "side", "west": "up"}}, {Id: 4152, Properties: map[string]string{"east": "none", "north": "none", "power": "2", "south": "side", "west": "side"}}, {Id: 4153, Properties: map[string]string{"east": "none", "north": "none", "power": "2", "south": "side", "west": "none"}}, {Id: 4154, Properties: map[string]string{"east": "none", "north": "none", "power": "2", "south": "none", "west": "up"}}, {Id: 4155, Properties: map[string]string{"east": "none", "north": "none", "power": "2", "south": "none", "west": "side"}}, {Id: 4156, Properties: map[string]string{"east": "none", "north": "none", "power": "2", "south": "none", "west": "none"}}, {Id: 4157, Properties: map[string]string{"east": "none", "north": "none", "power": "3", "south": "up", "west": "up"}}, {Id: 4158, Properties: map[string]string{"east": "none", "north": "none", "power": "3", "south": "up", "west": "side"}}, {Id: 4159, Properties: map[string]string{"east": "none", "north": "none", "power": "3", "south": "up", "west": "none"}}, {Id: 4160, Properties: map[string]string{"east": "none", "north": "none", "power": "3", "south": "side", "west": "up"}}, {Id: 4161, Properties: map[string]string{"east": "none", "north": "none", "power": "3", "south": "side", "west": "side"}}, {Id: 4162, Properties: map[string]string{"east": "none", "north": "none", "power": "3", "south": "side", "west": "none"}}, {Id: 4163, Properties: map[string]string{"east": "none", "north": "none", "power": "3", "south": "none", "west": "up"}}, {Id: 4164, Properties: map[string]string{"east": "none", "north": "none", "power": "3", "south": "none", "west": "side"}}, {Id: 4165, Properties: map[string]string{"east": "none", "north": "none", "power": "3", "south": "none", "west": "none"}}, {Id: 4166, Properties: map[string]string{"east": "none", "north": "none", "power": "4", "south": "up", "west": "up"}}, {Id: 4167, Properties: map[string]string{"east": "none", "north": "none", "power": "4", "south": "up", "west": "side"}}, {Id: 4168, Properties: map[string]string{"east": "none", "north": "none", "power": "4", "south": "up", "west": "none"}}, {Id: 4169, Properties: map[string]string{"east": "none", "north": "none", "power": "4", "south": "side", "west": "up"}}, {Id: 4170, Properties: map[string]string{"east": "none", "north": "none", "power": "4", "south": "side", "west": "side"}}, {Id: 4171, Properties: map[string]string{"east": "none", "north": "none", "power": "4", "south": "side", "west": "none"}}, {Id: 4172, Properties: map[string]string{"east": "none", "north": "none", "power": "4", "south": "none", "west": "up"}}, {Id: 4173, Properties: map[string]string{"east": "none", "north": "none", "power": "4", "south": "none", "west": "side"}}, {Id: 4174, Properties: map[string]string{"east": "none", "north": "none", "power": "4", "south": "none", "west": "none"}}, {Id: 4175, Properties: map[string]string{"east": "none", "north": "none", "power": "5", "south": "up", "west": "up"}}, {Id: 4176, Properties: map[string]string{"east": "none", "north": "none", "power": "5", "south": "up", "west": "side"}}, {Id: 4177, Properties: map[string]string{"east": "none", "north": "none", "power": "5", "south": "up", "west": "none"}}, {Id: 4178, Properties: map[string]string{"east": "none", "north": "none", "power": "5", "south": "side", "west": "up"}}, {Id: 4179, Properties: map[string]string{"east": "none", "north": "none", "power": "5", "south": "side", "west": "side"}}, {Id: 4180, Properties: map[string]string{"east": "none", "north": "none", "power": "5", "south": "side", "west": "none"}}, {Id: 4181, Properties: map[string]string{"east": "none", "north": "none", "power": "5", "south": "none", "west": "up"}}, {Id: 4182, Properties: map[string]string{"east": "none", "north": "none", "power": "5", "south": "none", "west": "side"}}, {Id: 4183, Properties: map[string]string{"east": "none", "north": "none", "power": "5", "south": "none", "west": "none"}}, {Id: 4184, Properties: map[string]string{"east": "none", "north": "none", "power": "6", "south": "up", "west": "up"}}, {Id: 4185, Properties: map[string]string{"east": "none", "north": "none", "power": "6", "south": "up", "west": "side"}}, {Id: 4186, Properties: map[string]string{"east": "none", "north": "none", "power": "6", "south": "up", "west": "none"}}, {Id: 4187, Properties: map[string]string{"east": "none", "north": "none", "power": "6", "south": "side", "west": "up"}}, {Id: 4188, Properties: map[string]string{"east": "none", "north": "none", "power": "6", "south": "side", "west": "side"}}, {Id: 4189, Properties: map[string]string{"east": "none", "north": "none", "power": "6", "south": "side", "west": "none"}}, {Id: 4190, Properties: map[string]string{"east": "none", "north": "none", "power": "6", "south": "none", "west": "up"}}, {Id: 4191, Properties: map[string]string{"east": "none", "north": "none", "power": "6", "south": "none", "west": "side"}}, {Id: 4192, Properties: map[string]string{"east": "none", "north": "none", "power": "6", "south": "none", "west": "none"}}, {Id: 4193, Properties: map[string]string{"east": "none", "north": "none", "power": "7", "south": "up", "west": "up"}}, {Id: 4194, Properties: map[string]string{"east": "none", "north": "none", "power": "7", "south": "up", "west": "side"}}, {Id: 4195, Properties: map[string]string{"east": "none", "north": "none", "power": "7", "south": "up", "west": "none"}}, {Id: 4196, Properties: map[string]string{"east": "none", "north": "none", "power": "7", "south": "side", "west": "up"}}, {Id: 4197, Properties: map[string]string{"east": "none", "north": "none", "power": "7", "south": "side", "west": "side"}}, {Id: 4198, Properties: map[string]string{"east": "none", "north": "none", "power": "7", "south": "side", "west": "none"}}, {Id: 4199, Properties: map[string]string{"east": "none", "north": "none", "power": "7", "south": "none", "west": "up"}}, {Id: 4200, Properties: map[string]string{"east": "none", "north": "none", "power": "7", "south": "none", "west": "side"}}, {Id: 4201, Properties: map[string]string{"east": "none", "north": "none", "power": "7", "south": "none", "west": "none"}}, {Id: 4202, Properties: map[string]string{"east": "none", "north": "none", "power": "8", "south": "up", "west": "up"}}, {Id: 4203, Properties: map[string]string{"east": "none", "north": "none", "power": "8", "south": "up", "west": "side"}}, {Id: 4204, Properties: map[string]string{"east": "none", "north": "none", "power": "8", "south": "up", "west": "none"}}, {Id: 4205, Properties: map[string]string{"east": "none", "north": "none", "power": "8", "south": "side", "west": "up"}}, {Id: 4206, Properties: map[string]string{"east": "none", "north": "none", "power": "8", "south": "side", "west": "side"}}, {Id: 4207, Properties: map[string]string{"east": "none", "north": "none", "power": "8", "south": "side", "west": "none"}}, {Id: 4208, Properties: map[string]string{"east": "none", "north": "none", "power": "8", "south": "none", "west": "up"}}, {Id: 4209, Properties: map[string]string{"east": "none", "north": "none", "power": "8", "south": "none", "west": "side"}}, {Id: 4210, Properties: map[string]string{"east": "none", "north": "none", "power": "8", "south": "none", "west": "none"}}, {Id: 4211, Properties: map[string]string{"east": "none", "north": "none", "power": "9", "south": "up", "west": "up"}}, {Id: 4212, Properties: map[string]string{"east": "none", "north": "none", "power": "9", "south": "up", "west": "side"}}, {Id: 4213, Properties: map[string]string{"east": "none", "north": "none", "power": "9", "south": "up", "west": "none"}}, {Id: 4214, Properties: map[string]string{"east": "none", "north": "none", "power": "9", "south": "side", "west": "up"}}, {Id: 4215, Properties: map[string]string{"east": "none", "north": "none", "power": "9", "south": "side", "west": "side"}}, {Id: 4216, Properties: map[string]string{"east": "none", "north": "none", "power": "9", "south": "side", "west": "none"}}, {Id: 4217, Properties: map[string]string{"east": "none", "north": "none", "power": "9", "south": "none", "west": "up"}}, {Id: 4218, Properties: map[string]string{"east": "none", "north": "none", "power": "9", "south": "none", "west": "side"}}, {Id: 4219, Properties: map[string]string{"east": "none", "north": "none", "power": "9", "south": "none", "west": "none"}}, {Id: 4220, Properties: map[string]string{"east": "none", "north": "none", "power": "10", "south": "up", "west": "up"}}, {Id: 4221, Properties: map[string]string{"east": "none", "north": "none", "power": "10", "south": "up", "west": "side"}}, {Id: 4222, Properties: map[string]string{"east": "none", "north": "none", "power": "10", "south": "up", "west": "none"}}, {Id: 4223, Properties: map[string]string{"east": "none", "north": "none", "power": "10", "south": "side", "west": "up"}}, {Id: 4224, Properties: map[string]string{"east": "none", "north": "none", "power": "10", "south": "side", "west": "side"}}, {Id: 4225, Properties: map[string]string{"east": "none", "north": "none", "power": "10", "south": "side", "west": "none"}}, {Id: 4226, Properties: map[string]string{"east": "none", "north": "none", "power": "10", "south": "none", "west": "up"}}, {Id: 4227, Properties: map[string]string{"east": "none", "north": "none", "power": "10", "south": "none", "west": "side"}}, {Id: 4228, Properties: map[string]string{"east": "none", "north": "none", "power": "10", "south": "none", "west": "none"}}, {Id: 4229, Properties: map[string]string{"east": "none", "north": "none", "power": "11", "south": "up", "west": "up"}}, {Id: 4230, Properties: map[string]string{"east": "none", "north": "none", "power": "11", "south": "up", "west": "side"}}, {Id: 4231, Properties: map[string]string{"east": "none", "north": "none", "power": "11", "south": "up", "west": "none"}}, {Id: 4232, Properties: map[string]string{"east": "none", "north": "none", "power": "11", "south": "side", "west": "up"}}, {Id: 4233, Properties: map[string]string{"east": "none", "north": "none", "power": "11", "south": "side", "west": "side"}}, {Id: 4234, Properties: map[string]string{"east": "none", "north": "none", "power": "11", "south": "side", "west": "none"}}, {Id: 4235, Properties: map[string]string{"east": "none", "north": "none", "power": "11", "south": "none", "west": "up"}}, {Id: 4236, Properties: map[string]string{"east": "none", "north": "none", "power": "11", "south": "none", "west": "side"}}, {Id: 4237, Properties: map[string]string{"east": "none", "north": "none", "power": "11", "south": "none", "west": "none"}}, {Id: 4238, Properties: map[string]string{"east": "none", "north": "none", "power": "12", "south": "up", "west": "up"}}, {Id: 4239, Properties: map[string]string{"east": "none", "north": "none", "power": "12", "south": "up", "west": "side"}}, {Id: 4240, Properties: map[string]string{"east": "none", "north": "none", "power": "12", "south": "up", "west": "none"}}, {Id: 4241, Properties: map[string]string{"east": "none", "north": "none", "power": "12", "south": "side", "west": "up"}}, {Id: 4242, Properties: map[string]string{"east": "none", "north": "none", "power": "12", "south": "side", "west": "side"}}, {Id: 4243, Properties: map[string]string{"east": "none", "north": "none", "power": "12", "south": "side", "west": "none"}}, {Id: 4244, Properties: map[string]string{"east": "none", "north": "none", "power": "12", "south": "none", "west": "up"}}, {Id: 4245, Properties: map[string]string{"east": "none", "north": "none", "power": "12", "south": "none", "west": "side"}}, {Id: 4246, Properties: map[string]string{"east": "none", "north": "none", "power": "12", "south": "none", "west": "none"}}, {Id: 4247, Properties: map[string]string{"east": "none", "north": "none", "power": "13", "south": "up", "west": "up"}}, {Id: 4248, Properties: map[string]string{"east": "none", "north": "none", "power": "13", "south": "up", "west": "side"}}, {Id: 4249, Properties: map[string]string{"east": "none", "north": "none", "power": "13", "south": "up", "west": "none"}}, {Id: 4250, Properties: map[string]string{"east": "none", "north": "none", "power": "13", "south": "side", "west": "up"}}, {Id: 4251, Properties: map[string]string{"east": "none", "north": "none", "power": "13", "south": "side", "west": "side"}}, {Id: 4252, Properties: map[string]string{"east": "none", "north": "none", "power": "13", "south": "side", "west": "none"}}, {Id: 4253, Properties: map[string]string{"east": "none", "north": "none", "power": "13", "south": "none", "west": "up"}}, {Id: 4254, Properties: map[string]string{"east": "none", "north": "none", "power": "13", "south": "none", "west": "side"}}, {Id: 4255, Properties: map[string]string{"east": "none", "north": "none", "power": "13", "south": "none", "west": "none"}}, {Id: 4256, Properties: map[string]string{"east": "none", "north": "none", "power": "14", "south": "up", "west": "up"}}, {Id: 4257, Properties: map[string]string{"east": "none", "north": "none", "power": "14", "south": "up", "west": "side"}}, {Id: 4258, Properties: map[string]string{"east": "none", "north": "none", "power": "14", "south": "up", "west": "none"}}, {Id: 4259, Properties: map[string]string{"east": "none", "north": "none", "power": "14", "south": "side", "west": "up"}}, {Id: 4260, Properties: map[string]string{"east": "none", "north": "none", "power": "14", "south": "side", "west": "side"}}, {Id: 4261, Properties: map[string]string{"east": "none", "north": "none", "power": "14", "south": "side", "west": "none"}}, {Id: 4262, Properties: map[string]string{"east": "none", "north": "none", "power": "14", "south": "none", "west": "up"}}, {Id: 4263, Properties: map[string]string{"east": "none", "north": "none", "power": "14", "south": "none", "west": "side"}}, {Id: 4264, Properties: map[string]string{"east": "none", "north": "none", "power": "14", "south": "none", "west": "none"}}, {Id: 4265, Properties: map[string]string{"east": "none", "north": "none", "power": "15", "south": "up", "west": "up"}}, {Id: 4266, Properties: map[string]string{"east": "none", "north": "none", "power": "15", "south": "up", "west": "side"}}, {Id: 4267, Properties: map[string]string{"east": "none", "north": "none", "power": "15", "south": "up", "west": "none"}}, {Id: 4268, Properties: map[string]string{"east": "none", "north": "none", "power": "15", "south": "side", "west": "up"}}, {Id: 4269, Properties: map[string]string{"east": "none", "north": "none", "power": "15", "south": "side", "west": "side"}}, {Id: 4270, Properties: map[string]string{"east": "none", "north": "none", "power": "15", "south": "side", "west": "none"}}, {Id: 4271, Properties: map[string]string{"east": "none", "north": "none", "power": "15", "south": "none", "west": "up"}}, {Id: 4272, Properties: map[string]string{"east": "none", "north": "none", "power": "15", "south": "none", "west": "side"}}, {Id: 4273, Properties: map[string]string{"east": "none", "north": "none", "power": "15", "south": "none", "west": "none"}}}}, "minecraft:reinforced_deepslate": {States: []{{Id: 26573, Properties: map[string]string{}}}}, "minecraft:repeater": {States: []{{Id: 5881, Properties: map[string]string{"delay": "1", "facing": "north", "locked": "true", "powered": "true"}}, {Id: 5882, Properties: map[string]string{"delay": "1", "facing": "north", "locked": "true", "powered": "false"}}, {Id: 5883, Properties: map[string]string{"delay": "1", "facing": "north", "locked": "false", "powered": "true"}}, {Id: 5884, Properties: map[string]string{"delay": "1", "facing": "north", "locked": "false", "powered": "false"}}, {Id: 5885, Properties: map[string]string{"delay": "1", "facing": "south", "locked": "true", "powered": "true"}}, {Id: 5886, Properties: map[string]string{"delay": "1", "facing": "south", "locked": "true", "powered": "false"}}, {Id: 5887, Properties: map[string]string{"delay": "1", "facing": "south", "locked": "false", "powered": "true"}}, {Id: 5888, Properties: map[string]string{"delay": "1", "facing": "south", "locked": "false", "powered": "false"}}, {Id: 5889, Properties: map[string]string{"delay": "1", "facing": "west", "locked": "true", "powered": "true"}}, {Id: 5890, Properties: map[string]string{"delay": "1", "facing": "west", "locked": "true", "powered": "false"}}, {Id: 5891, Properties: map[string]string{"delay": "1", "facing": "west", "locked": "false", "powered": "true"}}, {Id: 5892, Properties: map[string]string{"delay": "1", "facing": "west", "locked": "false", "powered": "false"}}, {Id: 5893, Properties: map[string]string{"delay": "1", "facing": "east", "locked": "true", "powered": "true"}}, {Id: 5894, Properties: map[string]string{"delay": "1", "facing": "east", "locked": "true", "powered": "false"}}, {Id: 5895, Properties: map[string]string{"delay": "1", "facing": "east", "locked": "false", "powered": "true"}}, {Id: 5896, Properties: map[string]string{"delay": "1", "facing": "east", "locked": "false", "powered": "false"}}, {Id: 5897, Properties: map[string]string{"delay": "2", "facing": "north", "locked": "true", "powered": "true"}}, {Id: 5898, Properties: map[string]string{"delay": "2", "facing": "north", "locked": "true", "powered": "false"}}, {Id: 5899, Properties: map[string]string{"delay": "2", "facing": "north", "locked": "false", "powered": "true"}}, {Id: 5900, Properties: map[string]string{"delay": "2", "facing": "north", "locked": "false", "powered": "false"}}, {Id: 5901, Properties: map[string]string{"delay": "2", "facing": "south", "locked": "true", "powered": "true"}}, {Id: 5902, Properties: map[string]string{"delay": "2", "facing": "south", "locked": "true", "powered": "false"}}, {Id: 5903, Properties: map[string]string{"delay": "2", "facing": "south", "locked": "false", "powered": "true"}}, {Id: 5904, Properties: map[string]string{"delay": "2", "facing": "south", "locked": "false", "powered": "false"}}, {Id: 5905, Properties: map[string]string{"delay": "2", "facing": "west", "locked": "true", "powered": "true"}}, {Id: 5906, Properties: map[string]string{"delay": "2", "facing": "west", "locked": "true", "powered": "false"}}, {Id: 5907, Properties: map[string]string{"delay": "2", "facing": "west", "locked": "false", "powered": "true"}}, {Id: 5908, Properties: map[string]string{"delay": "2", "facing": "west", "locked": "false", "powered": "false"}}, {Id: 5909, Properties: map[string]string{"delay": "2", "facing": "east", "locked": "true", "powered": "true"}}, {Id: 5910, Properties: map[string]string{"delay": "2", "facing": "east", "locked": "true", "powered": "false"}}, {Id: 5911, Properties: map[string]string{"delay": "2", "facing": "east", "locked": "false", "powered": "true"}}, {Id: 5912, Properties: map[string]string{"delay": "2", "facing": "east", "locked": "false", "powered": "false"}}, {Id: 5913, Properties: map[string]string{"delay": "3", "facing": "north", "locked": "true", "powered": "true"}}, {Id: 5914, Properties: map[string]string{"delay": "3", "facing": "north", "locked": "true", "powered": "false"}}, {Id: 5915, Properties: map[string]string{"delay": "3", "facing": "north", "locked": "false", "powered": "true"}}, {Id: 5916, Properties: map[string]string{"delay": "3", "facing": "north", "locked": "false", "powered": "false"}}, {Id: 5917, Properties: map[string]string{"delay": "3", "facing": "south", "locked": "true", "powered": "true"}}, {Id: 5918, Properties: map[string]string{"delay": "3", "facing": "south", "locked": "true", "powered": "false"}}, {Id: 5919, Properties: map[string]string{"delay": "3", "facing": "south", "locked": "false", "powered": "true"}}, {Id: 5920, Properties: map[string]string{"delay": "3", "facing": "south", "locked": "false", "powered": "false"}}, {Id: 5921, Properties: map[string]string{"delay": "3", "facing": "west", "locked": "true", "powered": "true"}}, {Id: 5922, Properties: map[string]string{"delay": "3", "facing": "west", "locked": "true", "powered": "false"}}, {Id: 5923, Properties: map[string]string{"delay": "3", "facing": "west", "locked": "false", "powered": "true"}}, {Id: 5924, Properties: map[string]string{"delay": "3", "facing": "west", "locked": "false", "powered": "false"}}, {Id: 5925, Properties: map[string]string{"delay": "3", "facing": "east", "locked": "true", "powered": "true"}}, {Id: 5926, Properties: map[string]string{"delay": "3", "facing": "east", "locked": "true", "powered": "false"}}, {Id: 5927, Properties: map[string]string{"delay": "3", "facing": "east", "locked": "false", "powered": "true"}}, {Id: 5928, Properties: map[string]string{"delay": "3", "facing": "east", "locked": "false", "powered": "false"}}, {Id: 5929, Properties: map[string]string{"delay": "4", "facing": "north", "locked": "true", "powered": "true"}}, {Id: 5930, Properties: map[string]string{"delay": "4", "facing": "north", "locked": "true", "powered": "false"}}, {Id: 5931, Properties: map[string]string{"delay": "4", "facing": "north", "locked": "false", "powered": "true"}}, {Id: 5932, Properties: map[string]string{"delay": "4", "facing": "north", "locked": "false", "powered": "false"}}, {Id: 5933, Properties: map[string]string{"delay": "4", "facing": "south", "locked": "true", "powered": "true"}}, {Id: 5934, Properties: map[string]string{"delay": "4", "facing": "south", "locked": "true", "powered": "false"}}, {Id: 5935, Properties: map[string]string{"delay": "4", "facing": "south", "locked": "false", "powered": "true"}}, {Id: 5936, Properties: map[string]string{"delay": "4", "facing": "south", "locked": "false", "powered": "false"}}, {Id: 5937, Properties: map[string]string{"delay": "4", "facing": "west", "locked": "true", "powered": "true"}}, {Id: 5938, Properties: map[string]string{"delay": "4", "facing": "west", "locked": "true", "powered": "false"}}, {Id: 5939, Properties: map[string]string{"delay": "4", "facing": "west", "locked": "false", "powered": "true"}}, {Id: 5940, Properties: map[string]string{"delay": "4", "facing": "west", "locked": "false", "powered": "false"}}, {Id: 5941, Properties: map[string]string{"delay": "4", "facing": "east", "locked": "true", "powered": "true"}}, {Id: 5942, Properties: map[string]string{"delay": "4", "facing": "east", "locked": "true", "powered": "false"}}, {Id: 5943, Properties: map[string]string{"delay": "4", "facing": "east", "locked": "false", "powered": "true"}}, {Id: 5944, Properties: map[string]string{"delay": "4", "facing": "east", "locked": "false", "powered": "false"}}}}, "minecraft:repeating_command_block": {States: []{{Id: 12515, Properties: map[string]string{"conditional": "true", "facing": "north"}}, {Id: 12516, Properties: map[string]string{"conditional": "true", "facing": "east"}}, {Id: 12517, Properties: map[string]string{"conditional": "true", "facing": "south"}}, {Id: 12518, Properties: map[string]string{"conditional": "true", "facing": "west"}}, {Id: 12519, Properties: map[string]string{"conditional": "true", "facing": "up"}}, {Id: 12520, Properties: map[string]string{"conditional": "true", "facing": "down"}}, {Id: 12521, Properties: map[string]string{"conditional": "false", "facing": "north"}}, {Id: 12522, Properties: map[string]string{"conditional": "false", "facing": "east"}}, {Id: 12523, Properties: map[string]string{"conditional": "false", "facing": "south"}}, {Id: 12524, Properties: map[string]string{"conditional": "false", "facing": "west"}}, {Id: 12525, Properties: map[string]string{"conditional": "false", "facing": "up"}}, {Id: 12526, Properties: map[string]string{"conditional": "false", "facing": "down"}}}}, "minecraft:respawn_anchor": {States: []{{Id: 19450, Properties: map[string]string{"charges": "0"}}, {Id: 19451, Properties: map[string]string{"charges": "1"}}, {Id: 19452, Properties: map[string]string{"charges": "2"}}, {Id: 19453, Properties: map[string]string{"charges": "3"}}, {Id: 19454, Properties: map[string]string{"charges": "4"}}}}, "minecraft:rooted_dirt": {States: []{{Id: 24902, Properties: map[string]string{}}}}, "minecraft:rose_bush": {States: []{{Id: 10751, Properties: map[string]string{"half": "upper"}}, {Id: 10752, Properties: map[string]string{"half": "lower"}}}}, "minecraft:sand": {States: []{{Id: 112, Properties: map[string]string{}}}}, "minecraft:sandstone": {States: []{{Id: 535, Properties: map[string]string{}}}}, "minecraft:sandstone_slab": {States: []{{Id: 11234, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11235, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11236, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11237, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11238, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11239, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:sandstone_stairs": {States: []{{Id: 7431, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7432, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7433, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7434, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7435, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7436, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7437, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7438, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7439, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7440, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7441, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7442, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7443, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7444, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7445, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7446, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7447, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7448, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7449, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7450, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7451, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7452, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7453, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7454, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7455, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7456, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7457, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7458, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7459, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7460, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7461, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7462, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7463, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7464, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7465, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7466, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7467, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7468, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7469, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7470, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7471, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7472, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7473, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7474, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7475, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7476, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7477, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7478, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7479, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7480, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7481, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7482, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7483, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7484, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7485, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7486, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7487, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7488, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7489, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7490, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7491, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7492, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7493, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7494, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7495, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7496, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7497, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7498, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7499, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7500, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7501, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7502, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7503, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7504, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7505, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7506, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7507, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7508, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7509, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7510, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:sandstone_wall": {States: []{{Id: 17400, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17401, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17402, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17403, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17404, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17405, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17406, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17407, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17408, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17409, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17410, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17411, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17412, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17413, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17414, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17415, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17416, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17417, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17418, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17419, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17420, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17421, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17422, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17423, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17424, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17425, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17426, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17427, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17428, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17429, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17430, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17431, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17432, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17433, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17434, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17435, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17436, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17437, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17438, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17439, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17440, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17441, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17442, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17443, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17444, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17445, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17446, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17447, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17448, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17449, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17450, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17451, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17452, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17453, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17454, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17455, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17456, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17457, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17458, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17459, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17460, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17461, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17462, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17463, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17464, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17465, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17466, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17467, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17468, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17469, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17470, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17471, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17472, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17473, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17474, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17475, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17476, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17477, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17478, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17479, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17480, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17481, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17482, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17483, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17484, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17485, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17486, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17487, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17488, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17489, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17490, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17491, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17492, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17493, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17494, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17495, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17496, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17497, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17498, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17499, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17500, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17501, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17502, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17503, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17504, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17505, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17506, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17507, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17508, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17509, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17510, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17511, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17512, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17513, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17514, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17515, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17516, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17517, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17518, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17519, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17520, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17521, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17522, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17523, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17524, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17525, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17526, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17527, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17528, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17529, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17530, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17531, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17532, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17533, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17534, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17535, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17536, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17537, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17538, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17539, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17540, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17541, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17542, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17543, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17544, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17545, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17546, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17547, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17548, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17549, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17550, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17551, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17552, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17553, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17554, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17555, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17556, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17557, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17558, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17559, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17560, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17561, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17562, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17563, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17564, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17565, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17566, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17567, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17568, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17569, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17570, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17571, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17572, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17573, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17574, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17575, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17576, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17577, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17578, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17579, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17580, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17581, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17582, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17583, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17584, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17585, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17586, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17587, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17588, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17589, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17590, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17591, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17592, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17593, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17594, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17595, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17596, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17597, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17598, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17599, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17600, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17601, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17602, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17603, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17604, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17605, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17606, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17607, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17608, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17609, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17610, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17611, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17612, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17613, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17614, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17615, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17616, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17617, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17618, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17619, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17620, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17621, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17622, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17623, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17624, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17625, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17626, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17627, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17628, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17629, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17630, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17631, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17632, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17633, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17634, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17635, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17636, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17637, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17638, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17639, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17640, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17641, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17642, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17643, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17644, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17645, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17646, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17647, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17648, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17649, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17650, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17651, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17652, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17653, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17654, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17655, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17656, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17657, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17658, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17659, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17660, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17661, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17662, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17663, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17664, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17665, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17666, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17667, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17668, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17669, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17670, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17671, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17672, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17673, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17674, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17675, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17676, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17677, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17678, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17679, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17680, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17681, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17682, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17683, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17684, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17685, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17686, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17687, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17688, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17689, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17690, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17691, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17692, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17693, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17694, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17695, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17696, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17697, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17698, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17699, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17700, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17701, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17702, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17703, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17704, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17705, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17706, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17707, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17708, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17709, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17710, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17711, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 17712, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 17713, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 17714, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 17715, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 17716, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 17717, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 17718, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 17719, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 17720, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 17721, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 17722, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 17723, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:scaffolding": {States: []{{Id: 18372, Properties: map[string]string{"bottom": "true", "distance": "0", "waterlogged": "true"}}, {Id: 18373, Properties: map[string]string{"bottom": "true", "distance": "0", "waterlogged": "false"}}, {Id: 18374, Properties: map[string]string{"bottom": "true", "distance": "1", "waterlogged": "true"}}, {Id: 18375, Properties: map[string]string{"bottom": "true", "distance": "1", "waterlogged": "false"}}, {Id: 18376, Properties: map[string]string{"bottom": "true", "distance": "2", "waterlogged": "true"}}, {Id: 18377, Properties: map[string]string{"bottom": "true", "distance": "2", "waterlogged": "false"}}, {Id: 18378, Properties: map[string]string{"bottom": "true", "distance": "3", "waterlogged": "true"}}, {Id: 18379, Properties: map[string]string{"bottom": "true", "distance": "3", "waterlogged": "false"}}, {Id: 18380, Properties: map[string]string{"bottom": "true", "distance": "4", "waterlogged": "true"}}, {Id: 18381, Properties: map[string]string{"bottom": "true", "distance": "4", "waterlogged": "false"}}, {Id: 18382, Properties: map[string]string{"bottom": "true", "distance": "5", "waterlogged": "true"}}, {Id: 18383, Properties: map[string]string{"bottom": "true", "distance": "5", "waterlogged": "false"}}, {Id: 18384, Properties: map[string]string{"bottom": "true", "distance": "6", "waterlogged": "true"}}, {Id: 18385, Properties: map[string]string{"bottom": "true", "distance": "6", "waterlogged": "false"}}, {Id: 18386, Properties: map[string]string{"bottom": "true", "distance": "7", "waterlogged": "true"}}, {Id: 18387, Properties: map[string]string{"bottom": "true", "distance": "7", "waterlogged": "false"}}, {Id: 18388, Properties: map[string]string{"bottom": "false", "distance": "0", "waterlogged": "true"}}, {Id: 18389, Properties: map[string]string{"bottom": "false", "distance": "0", "waterlogged": "false"}}, {Id: 18390, Properties: map[string]string{"bottom": "false", "distance": "1", "waterlogged": "true"}}, {Id: 18391, Properties: map[string]string{"bottom": "false", "distance": "1", "waterlogged": "false"}}, {Id: 18392, Properties: map[string]string{"bottom": "false", "distance": "2", "waterlogged": "true"}}, {Id: 18393, Properties: map[string]string{"bottom": "false", "distance": "2", "waterlogged": "false"}}, {Id: 18394, Properties: map[string]string{"bottom": "false", "distance": "3", "waterlogged": "true"}}, {Id: 18395, Properties: map[string]string{"bottom": "false", "distance": "3", "waterlogged": "false"}}, {Id: 18396, Properties: map[string]string{"bottom": "false", "distance": "4", "waterlogged": "true"}}, {Id: 18397, Properties: map[string]string{"bottom": "false", "distance": "4", "waterlogged": "false"}}, {Id: 18398, Properties: map[string]string{"bottom": "false", "distance": "5", "waterlogged": "true"}}, {Id: 18399, Properties: map[string]string{"bottom": "false", "distance": "5", "waterlogged": "false"}}, {Id: 18400, Properties: map[string]string{"bottom": "false", "distance": "6", "waterlogged": "true"}}, {Id: 18401, Properties: map[string]string{"bottom": "false", "distance": "6", "waterlogged": "false"}}, {Id: 18402, Properties: map[string]string{"bottom": "false", "distance": "7", "waterlogged": "true"}}, {Id: 18403, Properties: map[string]string{"bottom": "false", "distance": "7", "waterlogged": "false"}}}}, "minecraft:sculk": {States: []{{Id: 22799, Properties: map[string]string{}}}}, "minecraft:sculk_catalyst": {States: []{{Id: 22928, Properties: map[string]string{"bloom": "true"}}, {Id: 22929, Properties: map[string]string{"bloom": "false"}}}}, "minecraft:sculk_sensor": {States: []{{Id: 22319, Properties: map[string]string{"power": "0", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22320, Properties: map[string]string{"power": "0", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22321, Properties: map[string]string{"power": "0", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22322, Properties: map[string]string{"power": "0", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22323, Properties: map[string]string{"power": "0", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22324, Properties: map[string]string{"power": "0", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22325, Properties: map[string]string{"power": "1", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22326, Properties: map[string]string{"power": "1", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22327, Properties: map[string]string{"power": "1", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22328, Properties: map[string]string{"power": "1", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22329, Properties: map[string]string{"power": "1", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22330, Properties: map[string]string{"power": "1", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22331, Properties: map[string]string{"power": "2", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22332, Properties: map[string]string{"power": "2", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22333, Properties: map[string]string{"power": "2", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22334, Properties: map[string]string{"power": "2", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22335, Properties: map[string]string{"power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22336, Properties: map[string]string{"power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22337, Properties: map[string]string{"power": "3", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22338, Properties: map[string]string{"power": "3", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22339, Properties: map[string]string{"power": "3", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22340, Properties: map[string]string{"power": "3", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22341, Properties: map[string]string{"power": "3", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22342, Properties: map[string]string{"power": "3", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22343, Properties: map[string]string{"power": "4", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22344, Properties: map[string]string{"power": "4", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22345, Properties: map[string]string{"power": "4", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22346, Properties: map[string]string{"power": "4", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22347, Properties: map[string]string{"power": "4", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22348, Properties: map[string]string{"power": "4", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22349, Properties: map[string]string{"power": "5", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22350, Properties: map[string]string{"power": "5", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22351, Properties: map[string]string{"power": "5", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22352, Properties: map[string]string{"power": "5", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22353, Properties: map[string]string{"power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22354, Properties: map[string]string{"power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22355, Properties: map[string]string{"power": "6", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22356, Properties: map[string]string{"power": "6", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22357, Properties: map[string]string{"power": "6", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22358, Properties: map[string]string{"power": "6", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22359, Properties: map[string]string{"power": "6", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22360, Properties: map[string]string{"power": "6", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22361, Properties: map[string]string{"power": "7", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22362, Properties: map[string]string{"power": "7", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22363, Properties: map[string]string{"power": "7", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22364, Properties: map[string]string{"power": "7", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22365, Properties: map[string]string{"power": "7", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22366, Properties: map[string]string{"power": "7", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22367, Properties: map[string]string{"power": "8", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22368, Properties: map[string]string{"power": "8", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22369, Properties: map[string]string{"power": "8", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22370, Properties: map[string]string{"power": "8", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22371, Properties: map[string]string{"power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22372, Properties: map[string]string{"power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22373, Properties: map[string]string{"power": "9", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22374, Properties: map[string]string{"power": "9", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22375, Properties: map[string]string{"power": "9", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22376, Properties: map[string]string{"power": "9", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22377, Properties: map[string]string{"power": "9", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22378, Properties: map[string]string{"power": "9", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22379, Properties: map[string]string{"power": "10", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22380, Properties: map[string]string{"power": "10", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22381, Properties: map[string]string{"power": "10", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22382, Properties: map[string]string{"power": "10", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22383, Properties: map[string]string{"power": "10", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22384, Properties: map[string]string{"power": "10", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22385, Properties: map[string]string{"power": "11", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22386, Properties: map[string]string{"power": "11", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22387, Properties: map[string]string{"power": "11", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22388, Properties: map[string]string{"power": "11", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22389, Properties: map[string]string{"power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22390, Properties: map[string]string{"power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22391, Properties: map[string]string{"power": "12", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22392, Properties: map[string]string{"power": "12", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22393, Properties: map[string]string{"power": "12", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22394, Properties: map[string]string{"power": "12", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22395, Properties: map[string]string{"power": "12", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22396, Properties: map[string]string{"power": "12", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22397, Properties: map[string]string{"power": "13", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22398, Properties: map[string]string{"power": "13", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22399, Properties: map[string]string{"power": "13", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22400, Properties: map[string]string{"power": "13", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22401, Properties: map[string]string{"power": "13", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22402, Properties: map[string]string{"power": "13", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22403, Properties: map[string]string{"power": "14", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22404, Properties: map[string]string{"power": "14", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22405, Properties: map[string]string{"power": "14", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22406, Properties: map[string]string{"power": "14", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22407, Properties: map[string]string{"power": "14", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22408, Properties: map[string]string{"power": "14", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}, {Id: 22409, Properties: map[string]string{"power": "15", "sculk_sensor_phase": "inactive", "waterlogged": "true"}}, {Id: 22410, Properties: map[string]string{"power": "15", "sculk_sensor_phase": "inactive", "waterlogged": "false"}}, {Id: 22411, Properties: map[string]string{"power": "15", "sculk_sensor_phase": "active", "waterlogged": "true"}}, {Id: 22412, Properties: map[string]string{"power": "15", "sculk_sensor_phase": "active", "waterlogged": "false"}}, {Id: 22413, Properties: map[string]string{"power": "15", "sculk_sensor_phase": "cooldown", "waterlogged": "true"}}, {Id: 22414, Properties: map[string]string{"power": "15", "sculk_sensor_phase": "cooldown", "waterlogged": "false"}}}}, "minecraft:sculk_shrieker": {States: []{{Id: 22930, Properties: map[string]string{"can_summon": "true", "shrieking": "true", "waterlogged": "true"}}, {Id: 22931, Properties: map[string]string{"can_summon": "true", "shrieking": "true", "waterlogged": "false"}}, {Id: 22932, Properties: map[string]string{"can_summon": "true", "shrieking": "false", "waterlogged": "true"}}, {Id: 22933, Properties: map[string]string{"can_summon": "true", "shrieking": "false", "waterlogged": "false"}}, {Id: 22934, Properties: map[string]string{"can_summon": "false", "shrieking": "true", "waterlogged": "true"}}, {Id: 22935, Properties: map[string]string{"can_summon": "false", "shrieking": "true", "waterlogged": "false"}}, {Id: 22936, Properties: map[string]string{"can_summon": "false", "shrieking": "false", "waterlogged": "true"}}, {Id: 22937, Properties: map[string]string{"can_summon": "false", "shrieking": "false", "waterlogged": "false"}}}}, "minecraft:sculk_vein": {States: []{{Id: 22800, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22801, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22802, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22803, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22804, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22805, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22806, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22807, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22808, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22809, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22810, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22811, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22812, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22813, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22814, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22815, Properties: map[string]string{"down": "true", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22816, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22817, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22818, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22819, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22820, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22821, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22822, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22823, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22824, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22825, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22826, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22827, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22828, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22829, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22830, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22831, Properties: map[string]string{"down": "true", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22832, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22833, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22834, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22835, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22836, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22837, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22838, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22839, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22840, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22841, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22842, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22843, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22844, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22845, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22846, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22847, Properties: map[string]string{"down": "true", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22848, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22849, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22850, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22851, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22852, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22853, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22854, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22855, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22856, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22857, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22858, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22859, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22860, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22861, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22862, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22863, Properties: map[string]string{"down": "true", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22864, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22865, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22866, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22867, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22868, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22869, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22870, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22871, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22872, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22873, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22874, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22875, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22876, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22877, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22878, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22879, Properties: map[string]string{"down": "false", "east": "true", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22880, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22881, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22882, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22883, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22884, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22885, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22886, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22887, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22888, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22889, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22890, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22891, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22892, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22893, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22894, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22895, Properties: map[string]string{"down": "false", "east": "true", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22896, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22897, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22898, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22899, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22900, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22901, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22902, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22903, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22904, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22905, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22906, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22907, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22908, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22909, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22910, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22911, Properties: map[string]string{"down": "false", "east": "false", "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22912, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22913, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22914, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22915, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22916, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22917, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22918, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22919, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "true", "up": "false", "waterlogged": "false", "west": "false"}}, {Id: 22920, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "true"}}, {Id: 22921, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "true", "west": "false"}}, {Id: 22922, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "true"}}, {Id: 22923, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "true", "waterlogged": "false", "west": "false"}}, {Id: 22924, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "true"}}, {Id: 22925, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "true", "west": "false"}}, {Id: 22926, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true"}}, {Id: 22927, Properties: map[string]string{"down": "false", "east": "false", "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:sea_lantern": {States: []{{Id: 10724, Properties: map[string]string{}}}}, "minecraft:sea_pickle": {States: []{{Id: 12933, Properties: map[string]string{"pickles": "1", "waterlogged": "true"}}, {Id: 12934, Properties: map[string]string{"pickles": "1", "waterlogged": "false"}}, {Id: 12935, Properties: map[string]string{"pickles": "2", "waterlogged": "true"}}, {Id: 12936, Properties: map[string]string{"pickles": "2", "waterlogged": "false"}}, {Id: 12937, Properties: map[string]string{"pickles": "3", "waterlogged": "true"}}, {Id: 12938, Properties: map[string]string{"pickles": "3", "waterlogged": "false"}}, {Id: 12939, Properties: map[string]string{"pickles": "4", "waterlogged": "true"}}, {Id: 12940, Properties: map[string]string{"pickles": "4", "waterlogged": "false"}}}}, "minecraft:seagrass": {States: []{{Id: 2008, Properties: map[string]string{}}}}, "minecraft:short_grass": {States: []{{Id: 2005, Properties: map[string]string{}}}}, "minecraft:shroomlight": {States: []{{Id: 18610, Properties: map[string]string{}}}}, "minecraft:shulker_box": {States: []{{Id: 12562, Properties: map[string]string{"facing": "north"}}, {Id: 12563, Properties: map[string]string{"facing": "east"}}, {Id: 12564, Properties: map[string]string{"facing": "south"}}, {Id: 12565, Properties: map[string]string{"facing": "west"}}, {Id: 12566, Properties: map[string]string{"facing": "up"}}, {Id: 12567, Properties: map[string]string{"facing": "down"}}}}, "minecraft:skeleton_skull": {States: []{{Id: 8827, Properties: map[string]string{"powered": "true", "rotation": "0"}}, {Id: 8828, Properties: map[string]string{"powered": "true", "rotation": "1"}}, {Id: 8829, Properties: map[string]string{"powered": "true", "rotation": "2"}}, {Id: 8830, Properties: map[string]string{"powered": "true", "rotation": "3"}}, {Id: 8831, Properties: map[string]string{"powered": "true", "rotation": "4"}}, {Id: 8832, Properties: map[string]string{"powered": "true", "rotation": "5"}}, {Id: 8833, Properties: map[string]string{"powered": "true", "rotation": "6"}}, {Id: 8834, Properties: map[string]string{"powered": "true", "rotation": "7"}}, {Id: 8835, Properties: map[string]string{"powered": "true", "rotation": "8"}}, {Id: 8836, Properties: map[string]string{"powered": "true", "rotation": "9"}}, {Id: 8837, Properties: map[string]string{"powered": "true", "rotation": "10"}}, {Id: 8838, Properties: map[string]string{"powered": "true", "rotation": "11"}}, {Id: 8839, Properties: map[string]string{"powered": "true", "rotation": "12"}}, {Id: 8840, Properties: map[string]string{"powered": "true", "rotation": "13"}}, {Id: 8841, Properties: map[string]string{"powered": "true", "rotation": "14"}}, {Id: 8842, Properties: map[string]string{"powered": "true", "rotation": "15"}}, {Id: 8843, Properties: map[string]string{"powered": "false", "rotation": "0"}}, {Id: 8844, Properties: map[string]string{"powered": "false", "rotation": "1"}}, {Id: 8845, Properties: map[string]string{"powered": "false", "rotation": "2"}}, {Id: 8846, Properties: map[string]string{"powered": "false", "rotation": "3"}}, {Id: 8847, Properties: map[string]string{"powered": "false", "rotation": "4"}}, {Id: 8848, Properties: map[string]string{"powered": "false", "rotation": "5"}}, {Id: 8849, Properties: map[string]string{"powered": "false", "rotation": "6"}}, {Id: 8850, Properties: map[string]string{"powered": "false", "rotation": "7"}}, {Id: 8851, Properties: map[string]string{"powered": "false", "rotation": "8"}}, {Id: 8852, Properties: map[string]string{"powered": "false", "rotation": "9"}}, {Id: 8853, Properties: map[string]string{"powered": "false", "rotation": "10"}}, {Id: 8854, Properties: map[string]string{"powered": "false", "rotation": "11"}}, {Id: 8855, Properties: map[string]string{"powered": "false", "rotation": "12"}}, {Id: 8856, Properties: map[string]string{"powered": "false", "rotation": "13"}}, {Id: 8857, Properties: map[string]string{"powered": "false", "rotation": "14"}}, {Id: 8858, Properties: map[string]string{"powered": "false", "rotation": "15"}}}}, "minecraft:skeleton_wall_skull": {States: []{{Id: 8859, Properties: map[string]string{"facing": "north", "powered": "true"}}, {Id: 8860, Properties: map[string]string{"facing": "north", "powered": "false"}}, {Id: 8861, Properties: map[string]string{"facing": "south", "powered": "true"}}, {Id: 8862, Properties: map[string]string{"facing": "south", "powered": "false"}}, {Id: 8863, Properties: map[string]string{"facing": "west", "powered": "true"}}, {Id: 8864, Properties: map[string]string{"facing": "west", "powered": "false"}}, {Id: 8865, Properties: map[string]string{"facing": "east", "powered": "true"}}, {Id: 8866, Properties: map[string]string{"facing": "east", "powered": "false"}}}}, "minecraft:slime_block": {States: []{{Id: 10364, Properties: map[string]string{}}}}, "minecraft:small_amethyst_bud": {States: []{{Id: 21069, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 21070, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 21071, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 21072, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}, {Id: 21073, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 21074, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 21075, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 21076, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 21077, Properties: map[string]string{"facing": "up", "waterlogged": "true"}}, {Id: 21078, Properties: map[string]string{"facing": "up", "waterlogged": "false"}}, {Id: 21079, Properties: map[string]string{"facing": "down", "waterlogged": "true"}}, {Id: 21080, Properties: map[string]string{"facing": "down", "waterlogged": "false"}}}}, "minecraft:small_dripleaf": {States: []{{Id: 24884, Properties: map[string]string{"facing": "north", "half": "upper", "waterlogged": "true"}}, {Id: 24885, Properties: map[string]string{"facing": "north", "half": "upper", "waterlogged": "false"}}, {Id: 24886, Properties: map[string]string{"facing": "north", "half": "lower", "waterlogged": "true"}}, {Id: 24887, Properties: map[string]string{"facing": "north", "half": "lower", "waterlogged": "false"}}, {Id: 24888, Properties: map[string]string{"facing": "south", "half": "upper", "waterlogged": "true"}}, {Id: 24889, Properties: map[string]string{"facing": "south", "half": "upper", "waterlogged": "false"}}, {Id: 24890, Properties: map[string]string{"facing": "south", "half": "lower", "waterlogged": "true"}}, {Id: 24891, Properties: map[string]string{"facing": "south", "half": "lower", "waterlogged": "false"}}, {Id: 24892, Properties: map[string]string{"facing": "west", "half": "upper", "waterlogged": "true"}}, {Id: 24893, Properties: map[string]string{"facing": "west", "half": "upper", "waterlogged": "false"}}, {Id: 24894, Properties: map[string]string{"facing": "west", "half": "lower", "waterlogged": "true"}}, {Id: 24895, Properties: map[string]string{"facing": "west", "half": "lower", "waterlogged": "false"}}, {Id: 24896, Properties: map[string]string{"facing": "east", "half": "upper", "waterlogged": "true"}}, {Id: 24897, Properties: map[string]string{"facing": "east", "half": "upper", "waterlogged": "false"}}, {Id: 24898, Properties: map[string]string{"facing": "east", "half": "lower", "waterlogged": "true"}}, {Id: 24899, Properties: map[string]string{"facing": "east", "half": "lower", "waterlogged": "false"}}}}, "minecraft:smithing_table": {States: []{{Id: 18466, Properties: map[string]string{}}}}, "minecraft:smoker": {States: []{{Id: 18420, Properties: map[string]string{"facing": "north", "lit": "true"}}, {Id: 18421, Properties: map[string]string{"facing": "north", "lit": "false"}}, {Id: 18422, Properties: map[string]string{"facing": "south", "lit": "true"}}, {Id: 18423, Properties: map[string]string{"facing": "south", "lit": "false"}}, {Id: 18424, Properties: map[string]string{"facing": "west", "lit": "true"}}, {Id: 18425, Properties: map[string]string{"facing": "west", "lit": "false"}}, {Id: 18426, Properties: map[string]string{"facing": "east", "lit": "true"}}, {Id: 18427, Properties: map[string]string{"facing": "east", "lit": "false"}}}}, "minecraft:smooth_basalt": {States: []{{Id: 26557, Properties: map[string]string{}}}}, "minecraft:smooth_quartz": {States: []{{Id: 11308, Properties: map[string]string{}}}}, "minecraft:smooth_quartz_slab": {States: []{{Id: 14124, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14125, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14126, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14127, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14128, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14129, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:smooth_quartz_stairs": {States: []{{Id: 13602, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13603, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13604, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13605, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13606, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13607, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13608, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13609, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13610, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13611, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13612, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13613, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13614, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13615, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13616, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13617, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13618, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13619, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13620, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13621, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13622, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13623, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13624, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13625, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13626, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13627, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13628, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13629, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13630, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13631, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13632, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13633, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13634, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13635, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13636, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13637, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13638, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13639, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13640, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13641, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13642, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13643, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13644, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13645, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13646, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13647, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13648, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13649, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13650, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13651, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13652, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13653, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13654, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13655, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13656, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13657, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13658, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13659, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13660, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13661, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13662, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13663, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13664, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13665, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13666, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13667, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13668, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13669, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13670, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13671, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13672, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13673, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13674, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13675, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13676, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13677, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13678, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13679, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13680, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13681, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:smooth_red_sandstone": {States: []{{Id: 11309, Properties: map[string]string{}}}}, "minecraft:smooth_red_sandstone_slab": {States: []{{Id: 14088, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14089, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14090, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14091, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14092, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14093, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:smooth_red_sandstone_stairs": {States: []{{Id: 13042, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13043, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13044, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13045, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13046, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13047, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13048, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13049, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13050, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13051, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13052, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13053, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13054, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13055, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13056, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13057, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13058, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13059, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13060, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13061, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13062, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13063, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13064, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13065, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13066, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13067, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13068, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13069, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13070, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13071, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13072, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13073, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13074, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13075, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13076, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13077, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13078, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13079, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13080, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13081, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13082, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13083, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13084, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13085, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13086, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13087, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13088, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13089, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13090, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13091, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13092, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13093, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13094, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13095, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13096, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13097, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13098, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13099, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13100, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13101, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13102, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13103, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13104, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13105, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13106, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13107, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13108, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13109, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13110, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13111, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13112, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13113, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13114, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13115, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13116, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13117, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13118, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13119, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13120, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13121, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:smooth_sandstone": {States: []{{Id: 11307, Properties: map[string]string{}}}}, "minecraft:smooth_sandstone_slab": {States: []{{Id: 14118, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 14119, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 14120, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 14121, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 14122, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 14123, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:smooth_sandstone_stairs": {States: []{{Id: 13522, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13523, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13524, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13525, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13526, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13527, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13528, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13529, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13530, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13531, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13532, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13533, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13534, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13535, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13536, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13537, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13538, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13539, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13540, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13541, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13542, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13543, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13544, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13545, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13546, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13547, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13548, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13549, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13550, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13551, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13552, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13553, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13554, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13555, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13556, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13557, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13558, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13559, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13560, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13561, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13562, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13563, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13564, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13565, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13566, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13567, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13568, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13569, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13570, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13571, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13572, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13573, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13574, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13575, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13576, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13577, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13578, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13579, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13580, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13581, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13582, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13583, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13584, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13585, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13586, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13587, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13588, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13589, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13590, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13591, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13592, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13593, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13594, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13595, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13596, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13597, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13598, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13599, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13600, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13601, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:smooth_stone": {States: []{{Id: 11306, Properties: map[string]string{}}}}, "minecraft:smooth_stone_slab": {States: []{{Id: 11228, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11229, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11230, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11231, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11232, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11233, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:sniffer_egg": {States: []{{Id: 12800, Properties: map[string]string{"hatch": "0"}}, {Id: 12801, Properties: map[string]string{"hatch": "1"}}, {Id: 12802, Properties: map[string]string{"hatch": "2"}}}}, "minecraft:snow": {States: []{{Id: 5772, Properties: map[string]string{"layers": "1"}}, {Id: 5773, Properties: map[string]string{"layers": "2"}}, {Id: 5774, Properties: map[string]string{"layers": "3"}}, {Id: 5775, Properties: map[string]string{"layers": "4"}}, {Id: 5776, Properties: map[string]string{"layers": "5"}}, {Id: 5777, Properties: map[string]string{"layers": "6"}}, {Id: 5778, Properties: map[string]string{"layers": "7"}}, {Id: 5779, Properties: map[string]string{"layers": "8"}}}}, "minecraft:snow_block": {States: []{{Id: 5781, Properties: map[string]string{}}}}, "minecraft:soul_campfire": {States: []{{Id: 18543, Properties: map[string]string{"facing": "north", "lit": "true", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18544, Properties: map[string]string{"facing": "north", "lit": "true", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18545, Properties: map[string]string{"facing": "north", "lit": "true", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18546, Properties: map[string]string{"facing": "north", "lit": "true", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18547, Properties: map[string]string{"facing": "north", "lit": "false", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18548, Properties: map[string]string{"facing": "north", "lit": "false", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18549, Properties: map[string]string{"facing": "north", "lit": "false", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18550, Properties: map[string]string{"facing": "north", "lit": "false", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18551, Properties: map[string]string{"facing": "south", "lit": "true", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18552, Properties: map[string]string{"facing": "south", "lit": "true", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18553, Properties: map[string]string{"facing": "south", "lit": "true", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18554, Properties: map[string]string{"facing": "south", "lit": "true", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18555, Properties: map[string]string{"facing": "south", "lit": "false", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18556, Properties: map[string]string{"facing": "south", "lit": "false", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18557, Properties: map[string]string{"facing": "south", "lit": "false", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18558, Properties: map[string]string{"facing": "south", "lit": "false", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18559, Properties: map[string]string{"facing": "west", "lit": "true", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18560, Properties: map[string]string{"facing": "west", "lit": "true", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18561, Properties: map[string]string{"facing": "west", "lit": "true", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18562, Properties: map[string]string{"facing": "west", "lit": "true", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18563, Properties: map[string]string{"facing": "west", "lit": "false", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18564, Properties: map[string]string{"facing": "west", "lit": "false", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18565, Properties: map[string]string{"facing": "west", "lit": "false", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18566, Properties: map[string]string{"facing": "west", "lit": "false", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18567, Properties: map[string]string{"facing": "east", "lit": "true", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18568, Properties: map[string]string{"facing": "east", "lit": "true", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18569, Properties: map[string]string{"facing": "east", "lit": "true", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18570, Properties: map[string]string{"facing": "east", "lit": "true", "signal_fire": "false", "waterlogged": "false"}}, {Id: 18571, Properties: map[string]string{"facing": "east", "lit": "false", "signal_fire": "true", "waterlogged": "true"}}, {Id: 18572, Properties: map[string]string{"facing": "east", "lit": "false", "signal_fire": "true", "waterlogged": "false"}}, {Id: 18573, Properties: map[string]string{"facing": "east", "lit": "false", "signal_fire": "false", "waterlogged": "true"}}, {Id: 18574, Properties: map[string]string{"facing": "east", "lit": "false", "signal_fire": "false", "waterlogged": "false"}}}}, "minecraft:soul_fire": {States: []{{Id: 2872, Properties: map[string]string{}}}}, "minecraft:soul_lantern": {States: []{{Id: 18507, Properties: map[string]string{"hanging": "true", "waterlogged": "true"}}, {Id: 18508, Properties: map[string]string{"hanging": "true", "waterlogged": "false"}}, {Id: 18509, Properties: map[string]string{"hanging": "false", "waterlogged": "true"}}, {Id: 18510, Properties: map[string]string{"hanging": "false", "waterlogged": "false"}}}}, "minecraft:soul_sand": {States: []{{Id: 5850, Properties: map[string]string{}}}}, "minecraft:soul_soil": {States: []{{Id: 5851, Properties: map[string]string{}}}}, "minecraft:soul_torch": {States: []{{Id: 5858, Properties: map[string]string{}}}}, "minecraft:soul_wall_torch": {States: []{{Id: 5859, Properties: map[string]string{"facing": "north"}}, {Id: 5860, Properties: map[string]string{"facing": "south"}}, {Id: 5861, Properties: map[string]string{"facing": "west"}}, {Id: 5862, Properties: map[string]string{"facing": "east"}}}}, "minecraft:spawner": {States: []{{Id: 2873, Properties: map[string]string{}}}}, "minecraft:sponge": {States: []{{Id: 517, Properties: map[string]string{}}}}, "minecraft:spore_blossom": {States: []{{Id: 24823, Properties: map[string]string{}}}}, "minecraft:spruce_button": {States: []{{Id: 8635, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 8636, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 8637, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 8638, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 8639, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 8640, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 8641, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 8642, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 8643, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 8644, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 8645, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 8646, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 8647, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 8648, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 8649, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 8650, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 8651, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 8652, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 8653, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 8654, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 8655, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 8656, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 8657, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 8658, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:spruce_door": {States: []{{Id: 11822, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11823, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11824, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11825, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11826, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11827, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11828, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11829, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11830, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11831, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11832, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11833, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11834, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11835, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11836, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11837, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11838, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11839, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11840, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11841, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11842, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11843, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11844, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11845, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11846, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11847, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11848, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11849, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11850, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11851, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11852, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11853, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11854, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11855, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11856, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11857, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11858, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11859, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11860, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11861, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11862, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11863, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11864, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11865, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11866, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11867, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11868, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11869, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11870, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11871, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11872, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11873, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11874, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11875, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11876, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11877, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 11878, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 11879, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 11880, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 11881, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 11882, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 11883, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 11884, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 11885, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:spruce_fence": {States: []{{Id: 11566, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11567, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11568, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11569, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11570, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11571, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11572, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11573, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11574, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11575, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11576, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11577, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11578, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11579, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11580, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11581, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11582, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11583, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11584, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11585, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11586, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11587, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11588, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11589, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 11590, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 11591, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 11592, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 11593, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 11594, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 11595, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 11596, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 11597, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:spruce_fence_gate": {States: []{{Id: 11310, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11311, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11312, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11313, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11314, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11315, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11316, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11317, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11318, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11319, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11320, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11321, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11322, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11323, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11324, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11325, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11326, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11327, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11328, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11329, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11330, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11331, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11332, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11333, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 11334, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 11335, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 11336, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 11337, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 11338, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 11339, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 11340, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 11341, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:spruce_hanging_sign": {States: []{{Id: 4898, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 4899, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 4900, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 4901, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 4902, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 4903, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 4904, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 4905, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 4906, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 4907, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 4908, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 4909, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 4910, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 4911, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 4912, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 4913, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 4914, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 4915, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 4916, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 4917, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 4918, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 4919, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 4920, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 4921, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 4922, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 4923, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 4924, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 4925, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 4926, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 4927, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 4928, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 4929, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 4930, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 4931, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 4932, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 4933, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 4934, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 4935, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 4936, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 4937, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 4938, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 4939, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 4940, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 4941, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 4942, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 4943, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 4944, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 4945, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 4946, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 4947, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 4948, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 4949, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 4950, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 4951, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 4952, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 4953, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 4954, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 4955, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 4956, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 4957, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 4958, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 4959, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 4960, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 4961, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:spruce_leaves": {States: []{{Id: 265, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "true"}}, {Id: 266, Properties: map[string]string{"distance": "1", "persistent": "true", "waterlogged": "false"}}, {Id: 267, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "true"}}, {Id: 268, Properties: map[string]string{"distance": "1", "persistent": "false", "waterlogged": "false"}}, {Id: 269, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "true"}}, {Id: 270, Properties: map[string]string{"distance": "2", "persistent": "true", "waterlogged": "false"}}, {Id: 271, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "true"}}, {Id: 272, Properties: map[string]string{"distance": "2", "persistent": "false", "waterlogged": "false"}}, {Id: 273, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "true"}}, {Id: 274, Properties: map[string]string{"distance": "3", "persistent": "true", "waterlogged": "false"}}, {Id: 275, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "true"}}, {Id: 276, Properties: map[string]string{"distance": "3", "persistent": "false", "waterlogged": "false"}}, {Id: 277, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "true"}}, {Id: 278, Properties: map[string]string{"distance": "4", "persistent": "true", "waterlogged": "false"}}, {Id: 279, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "true"}}, {Id: 280, Properties: map[string]string{"distance": "4", "persistent": "false", "waterlogged": "false"}}, {Id: 281, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "true"}}, {Id: 282, Properties: map[string]string{"distance": "5", "persistent": "true", "waterlogged": "false"}}, {Id: 283, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "true"}}, {Id: 284, Properties: map[string]string{"distance": "5", "persistent": "false", "waterlogged": "false"}}, {Id: 285, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "true"}}, {Id: 286, Properties: map[string]string{"distance": "6", "persistent": "true", "waterlogged": "false"}}, {Id: 287, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "true"}}, {Id: 288, Properties: map[string]string{"distance": "6", "persistent": "false", "waterlogged": "false"}}, {Id: 289, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "true"}}, {Id: 290, Properties: map[string]string{"distance": "7", "persistent": "true", "waterlogged": "false"}}, {Id: 291, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "true"}}, {Id: 292, Properties: map[string]string{"distance": "7", "persistent": "false", "waterlogged": "false"}}}}, "minecraft:spruce_log": {States: []{{Id: 133, Properties: map[string]string{"axis": "x"}}, {Id: 134, Properties: map[string]string{"axis": "y"}}, {Id: 135, Properties: map[string]string{"axis": "z"}}}}, "minecraft:spruce_planks": {States: []{{Id: 16, Properties: map[string]string{}}}}, "minecraft:spruce_pressure_plate": {States: []{{Id: 5718, Properties: map[string]string{"powered": "true"}}, {Id: 5719, Properties: map[string]string{"powered": "false"}}}}, "minecraft:spruce_sapling": {States: []{{Id: 27, Properties: map[string]string{"stage": "0"}}, {Id: 28, Properties: map[string]string{"stage": "1"}}}}, "minecraft:spruce_sign": {States: []{{Id: 4334, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 4335, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 4336, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 4337, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 4338, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 4339, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 4340, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 4341, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 4342, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 4343, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 4344, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 4345, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 4346, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 4347, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 4348, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 4349, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 4350, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 4351, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 4352, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 4353, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 4354, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 4355, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 4356, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 4357, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 4358, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 4359, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 4360, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 4361, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 4362, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 4363, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 4364, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 4365, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:spruce_slab": {States: []{{Id: 11168, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11169, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11170, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11171, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11172, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11173, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:spruce_stairs": {States: []{{Id: 7666, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7667, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7668, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7669, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7670, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7671, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7672, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7673, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7674, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7675, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7676, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7677, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7678, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7679, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7680, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7681, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7682, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7683, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7684, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7685, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7686, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7687, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7688, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7689, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7690, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7691, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7692, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7693, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7694, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7695, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7696, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7697, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7698, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7699, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7700, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7701, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7702, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7703, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7704, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7705, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7706, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7707, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7708, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7709, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7710, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7711, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7712, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7713, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7714, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7715, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7716, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7717, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7718, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7719, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7720, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7721, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7722, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7723, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7724, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7725, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7726, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7727, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7728, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7729, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7730, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7731, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7732, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7733, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7734, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7735, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7736, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7737, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7738, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7739, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7740, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7741, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7742, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7743, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7744, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7745, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:spruce_trapdoor": {States: []{{Id: 6025, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6026, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6027, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6028, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6029, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6030, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6031, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6032, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6033, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6034, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6035, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6036, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6037, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6038, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6039, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6040, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6041, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6042, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6043, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6044, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6045, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6046, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6047, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6048, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6049, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6050, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6051, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6052, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6053, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6054, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6055, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6056, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6057, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6058, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6059, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6060, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6061, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6062, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6063, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6064, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6065, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6066, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6067, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6068, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6069, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6070, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6071, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6072, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6073, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6074, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6075, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6076, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6077, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6078, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6079, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6080, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 6081, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 6082, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 6083, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 6084, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 6085, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 6086, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 6087, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 6088, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:spruce_wall_hanging_sign": {States: []{{Id: 5546, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5547, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5548, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5549, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5550, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5551, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5552, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5553, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:spruce_wall_sign": {States: []{{Id: 4770, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 4771, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 4772, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 4773, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 4774, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 4775, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 4776, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 4777, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:spruce_wood": {States: []{{Id: 192, Properties: map[string]string{"axis": "x"}}, {Id: 193, Properties: map[string]string{"axis": "y"}}, {Id: 194, Properties: map[string]string{"axis": "z"}}}}, "minecraft:sticky_piston": {States: []{{Id: 1992, Properties: map[string]string{"extended": "true", "facing": "north"}}, {Id: 1993, Properties: map[string]string{"extended": "true", "facing": "east"}}, {Id: 1994, Properties: map[string]string{"extended": "true", "facing": "south"}}, {Id: 1995, Properties: map[string]string{"extended": "true", "facing": "west"}}, {Id: 1996, Properties: map[string]string{"extended": "true", "facing": "up"}}, {Id: 1997, Properties: map[string]string{"extended": "true", "facing": "down"}}, {Id: 1998, Properties: map[string]string{"extended": "false", "facing": "north"}}, {Id: 1999, Properties: map[string]string{"extended": "false", "facing": "east"}}, {Id: 2000, Properties: map[string]string{"extended": "false", "facing": "south"}}, {Id: 2001, Properties: map[string]string{"extended": "false", "facing": "west"}}, {Id: 2002, Properties: map[string]string{"extended": "false", "facing": "up"}}, {Id: 2003, Properties: map[string]string{"extended": "false", "facing": "down"}}}}, "minecraft:stone": {States: []{{Id: 1, Properties: map[string]string{}}}}, "minecraft:stone_brick_slab": {States: []{{Id: 11264, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11265, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11266, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11267, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11268, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11269, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:stone_brick_stairs": {States: []{{Id: 7109, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7110, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7111, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7112, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7113, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7114, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7115, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7116, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7117, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7118, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7119, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7120, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7121, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7122, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7123, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7124, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7125, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7126, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7127, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7128, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7129, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7130, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7131, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7132, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7133, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7134, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7135, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7136, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7137, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7138, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7139, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7140, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7141, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7142, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7143, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7144, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7145, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7146, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7147, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7148, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7149, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7150, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7151, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7152, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7153, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7154, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7155, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7156, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7157, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7158, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7159, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7160, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7161, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7162, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7163, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7164, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7165, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7166, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7167, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7168, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7169, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 7170, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 7171, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7172, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7173, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7174, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7175, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7176, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7177, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7178, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 7179, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 7180, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 7181, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 7182, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 7183, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 7184, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 7185, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 7186, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 7187, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 7188, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:stone_brick_wall": {States: []{{Id: 15780, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15781, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15782, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15783, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15784, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15785, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15786, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15787, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15788, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15789, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15790, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15791, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15792, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15793, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15794, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15795, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15796, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15797, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15798, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15799, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15800, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15801, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15802, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15803, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15804, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15805, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15806, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15807, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15808, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15809, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15810, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15811, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15812, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15813, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15814, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15815, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15816, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15817, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15818, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15819, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15820, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15821, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15822, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15823, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15824, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15825, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15826, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15827, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15828, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15829, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15830, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15831, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15832, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15833, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15834, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15835, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15836, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15837, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15838, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15839, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15840, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15841, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15842, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15843, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15844, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15845, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15846, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15847, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15848, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15849, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15850, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15851, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15852, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15853, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15854, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15855, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15856, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15857, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15858, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15859, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15860, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15861, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15862, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15863, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15864, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15865, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15866, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15867, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15868, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15869, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15870, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15871, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15872, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15873, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15874, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15875, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15876, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15877, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15878, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15879, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15880, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15881, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15882, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15883, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15884, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15885, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15886, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15887, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15888, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15889, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15890, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15891, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15892, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15893, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15894, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15895, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15896, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15897, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15898, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15899, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15900, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15901, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15902, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15903, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15904, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15905, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15906, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15907, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15908, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15909, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15910, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15911, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15912, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15913, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15914, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15915, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15916, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15917, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15918, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15919, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15920, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15921, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15922, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15923, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15924, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15925, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15926, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15927, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15928, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15929, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15930, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15931, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15932, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15933, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15934, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15935, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15936, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15937, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15938, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15939, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15940, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15941, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15942, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15943, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15944, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15945, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15946, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15947, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15948, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15949, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15950, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15951, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15952, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15953, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15954, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15955, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15956, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15957, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15958, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15959, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15960, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15961, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15962, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15963, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15964, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15965, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15966, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15967, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15968, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15969, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15970, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15971, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15972, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15973, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15974, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15975, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15976, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15977, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15978, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15979, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15980, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15981, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15982, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15983, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15984, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15985, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15986, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15987, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 15988, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 15989, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 15990, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 15991, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 15992, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 15993, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 15994, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 15995, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 15996, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 15997, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 15998, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 15999, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16000, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16001, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16002, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16003, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16004, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16005, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16006, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16007, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16008, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16009, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16010, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16011, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16012, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16013, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16014, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16015, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16016, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16017, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16018, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16019, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16020, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16021, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16022, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16023, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16024, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16025, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16026, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16027, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16028, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16029, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16030, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16031, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16032, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16033, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16034, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16035, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16036, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16037, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16038, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16039, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16040, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16041, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16042, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16043, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16044, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16045, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16046, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16047, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16048, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16049, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16050, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16051, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16052, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16053, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16054, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16055, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16056, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16057, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16058, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16059, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16060, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16061, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16062, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16063, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16064, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16065, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16066, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16067, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16068, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16069, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16070, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16071, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16072, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16073, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16074, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16075, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16076, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16077, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16078, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16079, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16080, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16081, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16082, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16083, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16084, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16085, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16086, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16087, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16088, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16089, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16090, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16091, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 16092, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 16093, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 16094, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 16095, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 16096, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 16097, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 16098, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 16099, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 16100, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 16101, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 16102, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 16103, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:stone_bricks": {States: []{{Id: 6537, Properties: map[string]string{}}}}, "minecraft:stone_button": {States: []{{Id: 5748, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 5749, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 5750, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 5751, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 5752, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 5753, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 5754, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 5755, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 5756, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 5757, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 5758, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 5759, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 5760, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 5761, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 5762, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 5763, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 5764, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 5765, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 5766, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 5767, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 5768, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 5769, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 5770, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 5771, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:stone_pressure_plate": {States: []{{Id: 5650, Properties: map[string]string{"powered": "true"}}, {Id: 5651, Properties: map[string]string{"powered": "false"}}}}, "minecraft:stone_slab": {States: []{{Id: 11222, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 11223, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 11224, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 11225, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 11226, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 11227, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:stone_stairs": {States: []{{Id: 13442, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13443, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13444, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13445, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13446, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13447, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13448, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13449, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13450, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13451, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13452, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13453, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13454, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13455, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13456, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13457, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13458, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13459, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13460, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13461, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13462, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13463, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13464, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13465, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13466, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13467, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13468, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13469, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13470, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13471, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13472, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13473, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13474, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13475, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13476, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13477, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13478, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13479, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13480, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13481, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13482, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13483, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13484, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13485, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13486, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13487, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13488, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13489, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13490, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13491, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13492, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13493, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13494, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13495, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13496, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13497, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13498, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13499, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13500, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13501, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13502, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 13503, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 13504, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13505, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13506, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13507, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13508, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13509, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13510, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13511, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 13512, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 13513, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 13514, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 13515, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 13516, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 13517, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 13518, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 13519, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 13520, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 13521, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:stonecutter": {States: []{{Id: 18467, Properties: map[string]string{"facing": "north"}}, {Id: 18468, Properties: map[string]string{"facing": "south"}}, {Id: 18469, Properties: map[string]string{"facing": "west"}}, {Id: 18470, Properties: map[string]string{"facing": "east"}}}}, "minecraft:stripped_acacia_log": {States: []{{Id: 171, Properties: map[string]string{"axis": "x"}}, {Id: 172, Properties: map[string]string{"axis": "y"}}, {Id: 173, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_acacia_wood": {States: []{{Id: 225, Properties: map[string]string{"axis": "x"}}, {Id: 226, Properties: map[string]string{"axis": "y"}}, {Id: 227, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_bamboo_block": {States: []{{Id: 186, Properties: map[string]string{"axis": "x"}}, {Id: 187, Properties: map[string]string{"axis": "y"}}, {Id: 188, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_birch_log": {States: []{{Id: 165, Properties: map[string]string{"axis": "x"}}, {Id: 166, Properties: map[string]string{"axis": "y"}}, {Id: 167, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_birch_wood": {States: []{{Id: 219, Properties: map[string]string{"axis": "x"}}, {Id: 220, Properties: map[string]string{"axis": "y"}}, {Id: 221, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_cherry_log": {States: []{{Id: 174, Properties: map[string]string{"axis": "x"}}, {Id: 175, Properties: map[string]string{"axis": "y"}}, {Id: 176, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_cherry_wood": {States: []{{Id: 228, Properties: map[string]string{"axis": "x"}}, {Id: 229, Properties: map[string]string{"axis": "y"}}, {Id: 230, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_crimson_hyphae": {States: []{{Id: 18605, Properties: map[string]string{"axis": "x"}}, {Id: 18606, Properties: map[string]string{"axis": "y"}}, {Id: 18607, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_crimson_stem": {States: []{{Id: 18599, Properties: map[string]string{"axis": "x"}}, {Id: 18600, Properties: map[string]string{"axis": "y"}}, {Id: 18601, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_dark_oak_log": {States: []{{Id: 177, Properties: map[string]string{"axis": "x"}}, {Id: 178, Properties: map[string]string{"axis": "y"}}, {Id: 179, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_dark_oak_wood": {States: []{{Id: 231, Properties: map[string]string{"axis": "x"}}, {Id: 232, Properties: map[string]string{"axis": "y"}}, {Id: 233, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_jungle_log": {States: []{{Id: 168, Properties: map[string]string{"axis": "x"}}, {Id: 169, Properties: map[string]string{"axis": "y"}}, {Id: 170, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_jungle_wood": {States: []{{Id: 222, Properties: map[string]string{"axis": "x"}}, {Id: 223, Properties: map[string]string{"axis": "y"}}, {Id: 224, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_mangrove_log": {States: []{{Id: 183, Properties: map[string]string{"axis": "x"}}, {Id: 184, Properties: map[string]string{"axis": "y"}}, {Id: 185, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_mangrove_wood": {States: []{{Id: 234, Properties: map[string]string{"axis": "x"}}, {Id: 235, Properties: map[string]string{"axis": "y"}}, {Id: 236, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_oak_log": {States: []{{Id: 180, Properties: map[string]string{"axis": "x"}}, {Id: 181, Properties: map[string]string{"axis": "y"}}, {Id: 182, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_oak_wood": {States: []{{Id: 213, Properties: map[string]string{"axis": "x"}}, {Id: 214, Properties: map[string]string{"axis": "y"}}, {Id: 215, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_spruce_log": {States: []{{Id: 162, Properties: map[string]string{"axis": "x"}}, {Id: 163, Properties: map[string]string{"axis": "y"}}, {Id: 164, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_spruce_wood": {States: []{{Id: 216, Properties: map[string]string{"axis": "x"}}, {Id: 217, Properties: map[string]string{"axis": "y"}}, {Id: 218, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_warped_hyphae": {States: []{{Id: 18588, Properties: map[string]string{"axis": "x"}}, {Id: 18589, Properties: map[string]string{"axis": "y"}}, {Id: 18590, Properties: map[string]string{"axis": "z"}}}}, "minecraft:stripped_warped_stem": {States: []{{Id: 18582, Properties: map[string]string{"axis": "x"}}, {Id: 18583, Properties: map[string]string{"axis": "y"}}, {Id: 18584, Properties: map[string]string{"axis": "z"}}}}, "minecraft:structure_block": {States: []{{Id: 19356, Properties: map[string]string{"mode": "save"}}, {Id: 19357, Properties: map[string]string{"mode": "load"}}, {Id: 19358, Properties: map[string]string{"mode": "corner"}}, {Id: 19359, Properties: map[string]string{"mode": "data"}}}}, "minecraft:structure_void": {States: []{{Id: 12549, Properties: map[string]string{}}}}, "minecraft:sugar_cane": {States: []{{Id: 5799, Properties: map[string]string{"age": "0"}}, {Id: 5800, Properties: map[string]string{"age": "1"}}, {Id: 5801, Properties: map[string]string{"age": "2"}}, {Id: 5802, Properties: map[string]string{"age": "3"}}, {Id: 5803, Properties: map[string]string{"age": "4"}}, {Id: 5804, Properties: map[string]string{"age": "5"}}, {Id: 5805, Properties: map[string]string{"age": "6"}}, {Id: 5806, Properties: map[string]string{"age": "7"}}, {Id: 5807, Properties: map[string]string{"age": "8"}}, {Id: 5808, Properties: map[string]string{"age": "9"}}, {Id: 5809, Properties: map[string]string{"age": "10"}}, {Id: 5810, Properties: map[string]string{"age": "11"}}, {Id: 5811, Properties: map[string]string{"age": "12"}}, {Id: 5812, Properties: map[string]string{"age": "13"}}, {Id: 5813, Properties: map[string]string{"age": "14"}}, {Id: 5814, Properties: map[string]string{"age": "15"}}}}, "minecraft:sunflower": {States: []{{Id: 10747, Properties: map[string]string{"half": "upper"}}, {Id: 10748, Properties: map[string]string{"half": "lower"}}}}, "minecraft:suspicious_gravel": {States: []{{Id: 119, Properties: map[string]string{"dusted": "0"}}, {Id: 120, Properties: map[string]string{"dusted": "1"}}, {Id: 121, Properties: map[string]string{"dusted": "2"}}, {Id: 122, Properties: map[string]string{"dusted": "3"}}}}, "minecraft:suspicious_sand": {States: []{{Id: 113, Properties: map[string]string{"dusted": "0"}}, {Id: 114, Properties: map[string]string{"dusted": "1"}}, {Id: 115, Properties: map[string]string{"dusted": "2"}}, {Id: 116, Properties: map[string]string{"dusted": "3"}}}}, "minecraft:sweet_berry_bush": {States: []{{Id: 18575, Properties: map[string]string{"age": "0"}}, {Id: 18576, Properties: map[string]string{"age": "1"}}, {Id: 18577, Properties: map[string]string{"age": "2"}}, {Id: 18578, Properties: map[string]string{"age": "3"}}}}, "minecraft:tall_grass": {States: []{{Id: 10755, Properties: map[string]string{"half": "upper"}}, {Id: 10756, Properties: map[string]string{"half": "lower"}}}}, "minecraft:tall_seagrass": {States: []{{Id: 2009, Properties: map[string]string{"half": "upper"}}, {Id: 2010, Properties: map[string]string{"half": "lower"}}}}, "minecraft:target": {States: []{{Id: 19381, Properties: map[string]string{"power": "0"}}, {Id: 19382, Properties: map[string]string{"power": "1"}}, {Id: 19383, Properties: map[string]string{"power": "2"}}, {Id: 19384, Properties: map[string]string{"power": "3"}}, {Id: 19385, Properties: map[string]string{"power": "4"}}, {Id: 19386, Properties: map[string]string{"power": "5"}}, {Id: 19387, Properties: map[string]string{"power": "6"}}, {Id: 19388, Properties: map[string]string{"power": "7"}}, {Id: 19389, Properties: map[string]string{"power": "8"}}, {Id: 19390, Properties: map[string]string{"power": "9"}}, {Id: 19391, Properties: map[string]string{"power": "10"}}, {Id: 19392, Properties: map[string]string{"power": "11"}}, {Id: 19393, Properties: map[string]string{"power": "12"}}, {Id: 19394, Properties: map[string]string{"power": "13"}}, {Id: 19395, Properties: map[string]string{"power": "14"}}, {Id: 19396, Properties: map[string]string{"power": "15"}}}}, "minecraft:terracotta": {States: []{{Id: 10744, Properties: map[string]string{}}}}, "minecraft:tinted_glass": {States: []{{Id: 22317, Properties: map[string]string{}}}}, "minecraft:tnt": {States: []{{Id: 2094, Properties: map[string]string{"unstable": "true"}}, {Id: 2095, Properties: map[string]string{"unstable": "false"}}}}, "minecraft:torch": {States: []{{Id: 2355, Properties: map[string]string{}}}}, "minecraft:torchflower": {States: []{{Id: 2076, Properties: map[string]string{}}}}, "minecraft:torchflower_crop": {States: []{{Id: 12495, Properties: map[string]string{"age": "0"}}, {Id: 12496, Properties: map[string]string{"age": "1"}}}}, "minecraft:trapped_chest": {States: []{{Id: 9119, Properties: map[string]string{"facing": "north", "type": "single", "waterlogged": "true"}}, {Id: 9120, Properties: map[string]string{"facing": "north", "type": "single", "waterlogged": "false"}}, {Id: 9121, Properties: map[string]string{"facing": "north", "type": "left", "waterlogged": "true"}}, {Id: 9122, Properties: map[string]string{"facing": "north", "type": "left", "waterlogged": "false"}}, {Id: 9123, Properties: map[string]string{"facing": "north", "type": "right", "waterlogged": "true"}}, {Id: 9124, Properties: map[string]string{"facing": "north", "type": "right", "waterlogged": "false"}}, {Id: 9125, Properties: map[string]string{"facing": "south", "type": "single", "waterlogged": "true"}}, {Id: 9126, Properties: map[string]string{"facing": "south", "type": "single", "waterlogged": "false"}}, {Id: 9127, Properties: map[string]string{"facing": "south", "type": "left", "waterlogged": "true"}}, {Id: 9128, Properties: map[string]string{"facing": "south", "type": "left", "waterlogged": "false"}}, {Id: 9129, Properties: map[string]string{"facing": "south", "type": "right", "waterlogged": "true"}}, {Id: 9130, Properties: map[string]string{"facing": "south", "type": "right", "waterlogged": "false"}}, {Id: 9131, Properties: map[string]string{"facing": "west", "type": "single", "waterlogged": "true"}}, {Id: 9132, Properties: map[string]string{"facing": "west", "type": "single", "waterlogged": "false"}}, {Id: 9133, Properties: map[string]string{"facing": "west", "type": "left", "waterlogged": "true"}}, {Id: 9134, Properties: map[string]string{"facing": "west", "type": "left", "waterlogged": "false"}}, {Id: 9135, Properties: map[string]string{"facing": "west", "type": "right", "waterlogged": "true"}}, {Id: 9136, Properties: map[string]string{"facing": "west", "type": "right", "waterlogged": "false"}}, {Id: 9137, Properties: map[string]string{"facing": "east", "type": "single", "waterlogged": "true"}}, {Id: 9138, Properties: map[string]string{"facing": "east", "type": "single", "waterlogged": "false"}}, {Id: 9139, Properties: map[string]string{"facing": "east", "type": "left", "waterlogged": "true"}}, {Id: 9140, Properties: map[string]string{"facing": "east", "type": "left", "waterlogged": "false"}}, {Id: 9141, Properties: map[string]string{"facing": "east", "type": "right", "waterlogged": "true"}}, {Id: 9142, Properties: map[string]string{"facing": "east", "type": "right", "waterlogged": "false"}}}}, "minecraft:trial_spawner": {States: []{{Id: 26638, Properties: map[string]string{"ominous": "true", "trial_spawner_state": "inactive"}}, {Id: 26639, Properties: map[string]string{"ominous": "true", "trial_spawner_state": "waiting_for_players"}}, {Id: 26640, Properties: map[string]string{"ominous": "true", "trial_spawner_state": "active"}}, {Id: 26641, Properties: map[string]string{"ominous": "true", "trial_spawner_state": "waiting_for_reward_ejection"}}, {Id: 26642, Properties: map[string]string{"ominous": "true", "trial_spawner_state": "ejecting_reward"}}, {Id: 26643, Properties: map[string]string{"ominous": "true", "trial_spawner_state": "cooldown"}}, {Id: 26644, Properties: map[string]string{"ominous": "false", "trial_spawner_state": "inactive"}}, {Id: 26645, Properties: map[string]string{"ominous": "false", "trial_spawner_state": "waiting_for_players"}}, {Id: 26646, Properties: map[string]string{"ominous": "false", "trial_spawner_state": "active"}}, {Id: 26647, Properties: map[string]string{"ominous": "false", "trial_spawner_state": "waiting_for_reward_ejection"}}, {Id: 26648, Properties: map[string]string{"ominous": "false", "trial_spawner_state": "ejecting_reward"}}, {Id: 26649, Properties: map[string]string{"ominous": "false", "trial_spawner_state": "cooldown"}}}}, "minecraft:tripwire": {States: []{{Id: 7537, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "true", "powered": "true", "south": "true", "west": "true"}}, {Id: 7538, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "true", "powered": "true", "south": "true", "west": "false"}}, {Id: 7539, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "true", "powered": "true", "south": "false", "west": "true"}}, {Id: 7540, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "true", "powered": "true", "south": "false", "west": "false"}}, {Id: 7541, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "true", "powered": "false", "south": "true", "west": "true"}}, {Id: 7542, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "true", "powered": "false", "south": "true", "west": "false"}}, {Id: 7543, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "true", "powered": "false", "south": "false", "west": "true"}}, {Id: 7544, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "true", "powered": "false", "south": "false", "west": "false"}}, {Id: 7545, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "false", "powered": "true", "south": "true", "west": "true"}}, {Id: 7546, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "false", "powered": "true", "south": "true", "west": "false"}}, {Id: 7547, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "false", "powered": "true", "south": "false", "west": "true"}}, {Id: 7548, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "false", "powered": "true", "south": "false", "west": "false"}}, {Id: 7549, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "false", "powered": "false", "south": "true", "west": "true"}}, {Id: 7550, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "false", "powered": "false", "south": "true", "west": "false"}}, {Id: 7551, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "false", "powered": "false", "south": "false", "west": "true"}}, {Id: 7552, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "true", "north": "false", "powered": "false", "south": "false", "west": "false"}}, {Id: 7553, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "true", "powered": "true", "south": "true", "west": "true"}}, {Id: 7554, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "true", "powered": "true", "south": "true", "west": "false"}}, {Id: 7555, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "true", "powered": "true", "south": "false", "west": "true"}}, {Id: 7556, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "true", "powered": "true", "south": "false", "west": "false"}}, {Id: 7557, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "true", "powered": "false", "south": "true", "west": "true"}}, {Id: 7558, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "true", "powered": "false", "south": "true", "west": "false"}}, {Id: 7559, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "true", "powered": "false", "south": "false", "west": "true"}}, {Id: 7560, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "true", "powered": "false", "south": "false", "west": "false"}}, {Id: 7561, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "false", "powered": "true", "south": "true", "west": "true"}}, {Id: 7562, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "false", "powered": "true", "south": "true", "west": "false"}}, {Id: 7563, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "false", "powered": "true", "south": "false", "west": "true"}}, {Id: 7564, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "false", "powered": "true", "south": "false", "west": "false"}}, {Id: 7565, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "false", "powered": "false", "south": "true", "west": "true"}}, {Id: 7566, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "false", "powered": "false", "south": "true", "west": "false"}}, {Id: 7567, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "false", "powered": "false", "south": "false", "west": "true"}}, {Id: 7568, Properties: map[string]string{"attached": "true", "disarmed": "true", "east": "false", "north": "false", "powered": "false", "south": "false", "west": "false"}}, {Id: 7569, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "true", "powered": "true", "south": "true", "west": "true"}}, {Id: 7570, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "true", "powered": "true", "south": "true", "west": "false"}}, {Id: 7571, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "true", "powered": "true", "south": "false", "west": "true"}}, {Id: 7572, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "true", "powered": "true", "south": "false", "west": "false"}}, {Id: 7573, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "true", "powered": "false", "south": "true", "west": "true"}}, {Id: 7574, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "true", "powered": "false", "south": "true", "west": "false"}}, {Id: 7575, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "true", "powered": "false", "south": "false", "west": "true"}}, {Id: 7576, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "true", "powered": "false", "south": "false", "west": "false"}}, {Id: 7577, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "false", "powered": "true", "south": "true", "west": "true"}}, {Id: 7578, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "false", "powered": "true", "south": "true", "west": "false"}}, {Id: 7579, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "false", "powered": "true", "south": "false", "west": "true"}}, {Id: 7580, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "false", "powered": "true", "south": "false", "west": "false"}}, {Id: 7581, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "false", "powered": "false", "south": "true", "west": "true"}}, {Id: 7582, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "false", "powered": "false", "south": "true", "west": "false"}}, {Id: 7583, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "false", "powered": "false", "south": "false", "west": "true"}}, {Id: 7584, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "true", "north": "false", "powered": "false", "south": "false", "west": "false"}}, {Id: 7585, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "true", "powered": "true", "south": "true", "west": "true"}}, {Id: 7586, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "true", "powered": "true", "south": "true", "west": "false"}}, {Id: 7587, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "true", "powered": "true", "south": "false", "west": "true"}}, {Id: 7588, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "true", "powered": "true", "south": "false", "west": "false"}}, {Id: 7589, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "true", "powered": "false", "south": "true", "west": "true"}}, {Id: 7590, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "true", "powered": "false", "south": "true", "west": "false"}}, {Id: 7591, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "true", "powered": "false", "south": "false", "west": "true"}}, {Id: 7592, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "true", "powered": "false", "south": "false", "west": "false"}}, {Id: 7593, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "false", "powered": "true", "south": "true", "west": "true"}}, {Id: 7594, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "false", "powered": "true", "south": "true", "west": "false"}}, {Id: 7595, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "false", "powered": "true", "south": "false", "west": "true"}}, {Id: 7596, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "false", "powered": "true", "south": "false", "west": "false"}}, {Id: 7597, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "false", "powered": "false", "south": "true", "west": "true"}}, {Id: 7598, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "false", "powered": "false", "south": "true", "west": "false"}}, {Id: 7599, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "false", "powered": "false", "south": "false", "west": "true"}}, {Id: 7600, Properties: map[string]string{"attached": "true", "disarmed": "false", "east": "false", "north": "false", "powered": "false", "south": "false", "west": "false"}}, {Id: 7601, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "true", "powered": "true", "south": "true", "west": "true"}}, {Id: 7602, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "true", "powered": "true", "south": "true", "west": "false"}}, {Id: 7603, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "true", "powered": "true", "south": "false", "west": "true"}}, {Id: 7604, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "true", "powered": "true", "south": "false", "west": "false"}}, {Id: 7605, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "true", "powered": "false", "south": "true", "west": "true"}}, {Id: 7606, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "true", "powered": "false", "south": "true", "west": "false"}}, {Id: 7607, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "true", "powered": "false", "south": "false", "west": "true"}}, {Id: 7608, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "true", "powered": "false", "south": "false", "west": "false"}}, {Id: 7609, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "false", "powered": "true", "south": "true", "west": "true"}}, {Id: 7610, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "false", "powered": "true", "south": "true", "west": "false"}}, {Id: 7611, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "false", "powered": "true", "south": "false", "west": "true"}}, {Id: 7612, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "false", "powered": "true", "south": "false", "west": "false"}}, {Id: 7613, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "false", "powered": "false", "south": "true", "west": "true"}}, {Id: 7614, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "false", "powered": "false", "south": "true", "west": "false"}}, {Id: 7615, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "false", "powered": "false", "south": "false", "west": "true"}}, {Id: 7616, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "true", "north": "false", "powered": "false", "south": "false", "west": "false"}}, {Id: 7617, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "true", "powered": "true", "south": "true", "west": "true"}}, {Id: 7618, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "true", "powered": "true", "south": "true", "west": "false"}}, {Id: 7619, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "true", "powered": "true", "south": "false", "west": "true"}}, {Id: 7620, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "true", "powered": "true", "south": "false", "west": "false"}}, {Id: 7621, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "true", "powered": "false", "south": "true", "west": "true"}}, {Id: 7622, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "true", "powered": "false", "south": "true", "west": "false"}}, {Id: 7623, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "true", "powered": "false", "south": "false", "west": "true"}}, {Id: 7624, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "true", "powered": "false", "south": "false", "west": "false"}}, {Id: 7625, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "false", "powered": "true", "south": "true", "west": "true"}}, {Id: 7626, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "false", "powered": "true", "south": "true", "west": "false"}}, {Id: 7627, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "false", "powered": "true", "south": "false", "west": "true"}}, {Id: 7628, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "false", "powered": "true", "south": "false", "west": "false"}}, {Id: 7629, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "false", "powered": "false", "south": "true", "west": "true"}}, {Id: 7630, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "false", "powered": "false", "south": "true", "west": "false"}}, {Id: 7631, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "false", "powered": "false", "south": "false", "west": "true"}}, {Id: 7632, Properties: map[string]string{"attached": "false", "disarmed": "true", "east": "false", "north": "false", "powered": "false", "south": "false", "west": "false"}}, {Id: 7633, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "true", "powered": "true", "south": "true", "west": "true"}}, {Id: 7634, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "true", "powered": "true", "south": "true", "west": "false"}}, {Id: 7635, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "true", "powered": "true", "south": "false", "west": "true"}}, {Id: 7636, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "true", "powered": "true", "south": "false", "west": "false"}}, {Id: 7637, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "true", "powered": "false", "south": "true", "west": "true"}}, {Id: 7638, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "true", "powered": "false", "south": "true", "west": "false"}}, {Id: 7639, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "true", "powered": "false", "south": "false", "west": "true"}}, {Id: 7640, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "true", "powered": "false", "south": "false", "west": "false"}}, {Id: 7641, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "false", "powered": "true", "south": "true", "west": "true"}}, {Id: 7642, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "false", "powered": "true", "south": "true", "west": "false"}}, {Id: 7643, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "false", "powered": "true", "south": "false", "west": "true"}}, {Id: 7644, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "false", "powered": "true", "south": "false", "west": "false"}}, {Id: 7645, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "false", "powered": "false", "south": "true", "west": "true"}}, {Id: 7646, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "false", "powered": "false", "south": "true", "west": "false"}}, {Id: 7647, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "false", "powered": "false", "south": "false", "west": "true"}}, {Id: 7648, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "true", "north": "false", "powered": "false", "south": "false", "west": "false"}}, {Id: 7649, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "true", "powered": "true", "south": "true", "west": "true"}}, {Id: 7650, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "true", "powered": "true", "south": "true", "west": "false"}}, {Id: 7651, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "true", "powered": "true", "south": "false", "west": "true"}}, {Id: 7652, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "true", "powered": "true", "south": "false", "west": "false"}}, {Id: 7653, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "true", "powered": "false", "south": "true", "west": "true"}}, {Id: 7654, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "true", "powered": "false", "south": "true", "west": "false"}}, {Id: 7655, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "true", "powered": "false", "south": "false", "west": "true"}}, {Id: 7656, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "true", "powered": "false", "south": "false", "west": "false"}}, {Id: 7657, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "false", "powered": "true", "south": "true", "west": "true"}}, {Id: 7658, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "false", "powered": "true", "south": "true", "west": "false"}}, {Id: 7659, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "false", "powered": "true", "south": "false", "west": "true"}}, {Id: 7660, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "false", "powered": "true", "south": "false", "west": "false"}}, {Id: 7661, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "false", "powered": "false", "south": "true", "west": "true"}}, {Id: 7662, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "false", "powered": "false", "south": "true", "west": "false"}}, {Id: 7663, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "false", "powered": "false", "south": "false", "west": "true"}}, {Id: 7664, Properties: map[string]string{"attached": "false", "disarmed": "false", "east": "false", "north": "false", "powered": "false", "south": "false", "west": "false"}}}}, "minecraft:tripwire_hook": {States: []{{Id: 7521, Properties: map[string]string{"attached": "true", "facing": "north", "powered": "true"}}, {Id: 7522, Properties: map[string]string{"attached": "true", "facing": "north", "powered": "false"}}, {Id: 7523, Properties: map[string]string{"attached": "true", "facing": "south", "powered": "true"}}, {Id: 7524, Properties: map[string]string{"attached": "true", "facing": "south", "powered": "false"}}, {Id: 7525, Properties: map[string]string{"attached": "true", "facing": "west", "powered": "true"}}, {Id: 7526, Properties: map[string]string{"attached": "true", "facing": "west", "powered": "false"}}, {Id: 7527, Properties: map[string]string{"attached": "true", "facing": "east", "powered": "true"}}, {Id: 7528, Properties: map[string]string{"attached": "true", "facing": "east", "powered": "false"}}, {Id: 7529, Properties: map[string]string{"attached": "false", "facing": "north", "powered": "true"}}, {Id: 7530, Properties: map[string]string{"attached": "false", "facing": "north", "powered": "false"}}, {Id: 7531, Properties: map[string]string{"attached": "false", "facing": "south", "powered": "true"}}, {Id: 7532, Properties: map[string]string{"attached": "false", "facing": "south", "powered": "false"}}, {Id: 7533, Properties: map[string]string{"attached": "false", "facing": "west", "powered": "true"}}, {Id: 7534, Properties: map[string]string{"attached": "false", "facing": "west", "powered": "false"}}, {Id: 7535, Properties: map[string]string{"attached": "false", "facing": "east", "powered": "true"}}, {Id: 7536, Properties: map[string]string{"attached": "false", "facing": "east", "powered": "false"}}}}, "minecraft:tube_coral": {States: []{{Id: 12823, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12824, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:tube_coral_block": {States: []{{Id: 12808, Properties: map[string]string{}}}}, "minecraft:tube_coral_fan": {States: []{{Id: 12843, Properties: map[string]string{"waterlogged": "true"}}, {Id: 12844, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:tube_coral_wall_fan": {States: []{{Id: 12893, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 12894, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 12895, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 12896, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 12897, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 12898, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 12899, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 12900, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:tuff": {States: []{{Id: 21081, Properties: map[string]string{}}}}, "minecraft:tuff_brick_slab": {States: []{{Id: 21905, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 21906, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 21907, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 21908, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 21909, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 21910, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:tuff_brick_stairs": {States: []{{Id: 21911, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21912, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21913, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21914, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21915, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21916, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21917, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21918, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21919, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21920, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21921, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21922, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21923, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21924, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21925, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21926, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21927, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21928, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21929, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21930, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21931, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21932, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21933, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21934, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21935, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21936, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21937, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21938, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21939, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21940, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21941, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21942, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21943, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21944, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21945, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21946, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21947, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21948, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21949, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21950, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21951, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21952, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21953, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21954, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21955, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21956, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21957, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21958, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21959, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21960, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21961, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21962, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21963, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21964, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21965, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21966, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21967, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21968, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21969, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21970, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21971, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21972, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21973, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21974, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21975, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21976, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21977, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21978, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21979, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21980, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21981, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21982, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21983, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21984, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21985, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21986, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21987, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21988, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21989, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21990, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:tuff_brick_wall": {States: []{{Id: 21991, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21992, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21993, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21994, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21995, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21996, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21997, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21998, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21999, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22000, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22001, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22002, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22003, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22004, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22005, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22006, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22007, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22008, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22009, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22010, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22011, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22012, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22013, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22014, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22015, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22016, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22017, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22018, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22019, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22020, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22021, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22022, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22023, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22024, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22025, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22026, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22027, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22028, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22029, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22030, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22031, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22032, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22033, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22034, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22035, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22036, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22037, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22038, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22039, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22040, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22041, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22042, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22043, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22044, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22045, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22046, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22047, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22048, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22049, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22050, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22051, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22052, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22053, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22054, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22055, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22056, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22057, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22058, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22059, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22060, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22061, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22062, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22063, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22064, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22065, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22066, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22067, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22068, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22069, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22070, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22071, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22072, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22073, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22074, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22075, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22076, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22077, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22078, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22079, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22080, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22081, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22082, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22083, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22084, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22085, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22086, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22087, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22088, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22089, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22090, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22091, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22092, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22093, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22094, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22095, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22096, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22097, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22098, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22099, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22100, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22101, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22102, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22103, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22104, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22105, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22106, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22107, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22108, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22109, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22110, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22111, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22112, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22113, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22114, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22115, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22116, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22117, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22118, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22119, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22120, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22121, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22122, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22123, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22124, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22125, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22126, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22127, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22128, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22129, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22130, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22131, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22132, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22133, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22134, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22135, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22136, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22137, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22138, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22139, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22140, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22141, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22142, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22143, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22144, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22145, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22146, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22147, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22148, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22149, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22150, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22151, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22152, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22153, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22154, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22155, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22156, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22157, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22158, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22159, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22160, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22161, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22162, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22163, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22164, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22165, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22166, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22167, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22168, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22169, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22170, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22171, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22172, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22173, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22174, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22175, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22176, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22177, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22178, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22179, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22180, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22181, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22182, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22183, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22184, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22185, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22186, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22187, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22188, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22189, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22190, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22191, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22192, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22193, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22194, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22195, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22196, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22197, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22198, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22199, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22200, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22201, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22202, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22203, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22204, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22205, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22206, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22207, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22208, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22209, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22210, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22211, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22212, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22213, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22214, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22215, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22216, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22217, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22218, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22219, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22220, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22221, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22222, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22223, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22224, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22225, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22226, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22227, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22228, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22229, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22230, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22231, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22232, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22233, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22234, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22235, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22236, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22237, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22238, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22239, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22240, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22241, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22242, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22243, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22244, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22245, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22246, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22247, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22248, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22249, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22250, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22251, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22252, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22253, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22254, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22255, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22256, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22257, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22258, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22259, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22260, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22261, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22262, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22263, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22264, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22265, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22266, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22267, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22268, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22269, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22270, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22271, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22272, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22273, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22274, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22275, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22276, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22277, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22278, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22279, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22280, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22281, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22282, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22283, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22284, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22285, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22286, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22287, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22288, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22289, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22290, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22291, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22292, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22293, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22294, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22295, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22296, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22297, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22298, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22299, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22300, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22301, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22302, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 22303, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 22304, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 22305, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 22306, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 22307, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 22308, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 22309, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 22310, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 22311, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 22312, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 22313, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 22314, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:tuff_bricks": {States: []{{Id: 21904, Properties: map[string]string{}}}}, "minecraft:tuff_slab": {States: []{{Id: 21082, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 21083, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 21084, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 21085, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 21086, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 21087, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:tuff_stairs": {States: []{{Id: 21088, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21089, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21090, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21091, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21092, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21093, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21094, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21095, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21096, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21097, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21098, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21099, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21100, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21101, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21102, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21103, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21104, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21105, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21106, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21107, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21108, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21109, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21110, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21111, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21112, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21113, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21114, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21115, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21116, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21117, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21118, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21119, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21120, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21121, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21122, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21123, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21124, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21125, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21126, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21127, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21128, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21129, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21130, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21131, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21132, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21133, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21134, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21135, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21136, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21137, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21138, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21139, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21140, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21141, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21142, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21143, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21144, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21145, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21146, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21147, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21148, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 21149, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 21150, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21151, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21152, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21153, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21154, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21155, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21156, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21157, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 21158, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 21159, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 21160, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 21161, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 21162, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 21163, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 21164, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 21165, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 21166, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 21167, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:tuff_wall": {States: []{{Id: 21168, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21169, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21170, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21171, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21172, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21173, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21174, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21175, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21176, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21177, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21178, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21179, Properties: map[string]string{"east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21180, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21181, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21182, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21183, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21184, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21185, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21186, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21187, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21188, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21189, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21190, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21191, Properties: map[string]string{"east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21192, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21193, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21194, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21195, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21196, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21197, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21198, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21199, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21200, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21201, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21202, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21203, Properties: map[string]string{"east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21204, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21205, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21206, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21207, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21208, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21209, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21210, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21211, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21212, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21213, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21214, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21215, Properties: map[string]string{"east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21216, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21217, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21218, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21219, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21220, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21221, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21222, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21223, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21224, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21225, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21226, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21227, Properties: map[string]string{"east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21228, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21229, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21230, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21231, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21232, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21233, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21234, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21235, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21236, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21237, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21238, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21239, Properties: map[string]string{"east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21240, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21241, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21242, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21243, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21244, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21245, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21246, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21247, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21248, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21249, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21250, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21251, Properties: map[string]string{"east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21252, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21253, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21254, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21255, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21256, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21257, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21258, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21259, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21260, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21261, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21262, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21263, Properties: map[string]string{"east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21264, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21265, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21266, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21267, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21268, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21269, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21270, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21271, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21272, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21273, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21274, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21275, Properties: map[string]string{"east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21276, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21277, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21278, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21279, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21280, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21281, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21282, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21283, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21284, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21285, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21286, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21287, Properties: map[string]string{"east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21288, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21289, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21290, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21291, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21292, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21293, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21294, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21295, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21296, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21297, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21298, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21299, Properties: map[string]string{"east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21300, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21301, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21302, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21303, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21304, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21305, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21306, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21307, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21308, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21309, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21310, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21311, Properties: map[string]string{"east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21312, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21313, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21314, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21315, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21316, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21317, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21318, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21319, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21320, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21321, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21322, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21323, Properties: map[string]string{"east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21324, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21325, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21326, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21327, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21328, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21329, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21330, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21331, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21332, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21333, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21334, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21335, Properties: map[string]string{"east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21336, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21337, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21338, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21339, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21340, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21341, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21342, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21343, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21344, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21345, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21346, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21347, Properties: map[string]string{"east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21348, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21349, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21350, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21351, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21352, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21353, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21354, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21355, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21356, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21357, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21358, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21359, Properties: map[string]string{"east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21360, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21361, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21362, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21363, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21364, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21365, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21366, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21367, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21368, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21369, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21370, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21371, Properties: map[string]string{"east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21372, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21373, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21374, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21375, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21376, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21377, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21378, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21379, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21380, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21381, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21382, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21383, Properties: map[string]string{"east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21384, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21385, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21386, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21387, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21388, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21389, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21390, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21391, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21392, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21393, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21394, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21395, Properties: map[string]string{"east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21396, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21397, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21398, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21399, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21400, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21401, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21402, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21403, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21404, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21405, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21406, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21407, Properties: map[string]string{"east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21408, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21409, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21410, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21411, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21412, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21413, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21414, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21415, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21416, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21417, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21418, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21419, Properties: map[string]string{"east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21420, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21421, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21422, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21423, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21424, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21425, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21426, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21427, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21428, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21429, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21430, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21431, Properties: map[string]string{"east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21432, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21433, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21434, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21435, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21436, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21437, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21438, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21439, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21440, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21441, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21442, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21443, Properties: map[string]string{"east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21444, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21445, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21446, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21447, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21448, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21449, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21450, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21451, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21452, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21453, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21454, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21455, Properties: map[string]string{"east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21456, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21457, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21458, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21459, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21460, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21461, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21462, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21463, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21464, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21465, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21466, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21467, Properties: map[string]string{"east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21468, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21469, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21470, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21471, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21472, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21473, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21474, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21475, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21476, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21477, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21478, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21479, Properties: map[string]string{"east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall"}}, {Id: 21480, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none"}}, {Id: 21481, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low"}}, {Id: 21482, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall"}}, {Id: 21483, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none"}}, {Id: 21484, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low"}}, {Id: 21485, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall"}}, {Id: 21486, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none"}}, {Id: 21487, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low"}}, {Id: 21488, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall"}}, {Id: 21489, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none"}}, {Id: 21490, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low"}}, {Id: 21491, Properties: map[string]string{"east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall"}}}}, "minecraft:turtle_egg": {States: []{{Id: 12788, Properties: map[string]string{"eggs": "1", "hatch": "0"}}, {Id: 12789, Properties: map[string]string{"eggs": "1", "hatch": "1"}}, {Id: 12790, Properties: map[string]string{"eggs": "1", "hatch": "2"}}, {Id: 12791, Properties: map[string]string{"eggs": "2", "hatch": "0"}}, {Id: 12792, Properties: map[string]string{"eggs": "2", "hatch": "1"}}, {Id: 12793, Properties: map[string]string{"eggs": "2", "hatch": "2"}}, {Id: 12794, Properties: map[string]string{"eggs": "3", "hatch": "0"}}, {Id: 12795, Properties: map[string]string{"eggs": "3", "hatch": "1"}}, {Id: 12796, Properties: map[string]string{"eggs": "3", "hatch": "2"}}, {Id: 12797, Properties: map[string]string{"eggs": "4", "hatch": "0"}}, {Id: 12798, Properties: map[string]string{"eggs": "4", "hatch": "1"}}, {Id: 12799, Properties: map[string]string{"eggs": "4", "hatch": "2"}}}}, "minecraft:twisting_vines": {States: []{{Id: 18638, Properties: map[string]string{"age": "0"}}, {Id: 18639, Properties: map[string]string{"age": "1"}}, {Id: 18640, Properties: map[string]string{"age": "2"}}, {Id: 18641, Properties: map[string]string{"age": "3"}}, {Id: 18642, Properties: map[string]string{"age": "4"}}, {Id: 18643, Properties: map[string]string{"age": "5"}}, {Id: 18644, Properties: map[string]string{"age": "6"}}, {Id: 18645, Properties: map[string]string{"age": "7"}}, {Id: 18646, Properties: map[string]string{"age": "8"}}, {Id: 18647, Properties: map[string]string{"age": "9"}}, {Id: 18648, Properties: map[string]string{"age": "10"}}, {Id: 18649, Properties: map[string]string{"age": "11"}}, {Id: 18650, Properties: map[string]string{"age": "12"}}, {Id: 18651, Properties: map[string]string{"age": "13"}}, {Id: 18652, Properties: map[string]string{"age": "14"}}, {Id: 18653, Properties: map[string]string{"age": "15"}}, {Id: 18654, Properties: map[string]string{"age": "16"}}, {Id: 18655, Properties: map[string]string{"age": "17"}}, {Id: 18656, Properties: map[string]string{"age": "18"}}, {Id: 18657, Properties: map[string]string{"age": "19"}}, {Id: 18658, Properties: map[string]string{"age": "20"}}, {Id: 18659, Properties: map[string]string{"age": "21"}}, {Id: 18660, Properties: map[string]string{"age": "22"}}, {Id: 18661, Properties: map[string]string{"age": "23"}}, {Id: 18662, Properties: map[string]string{"age": "24"}}, {Id: 18663, Properties: map[string]string{"age": "25"}}}}, "minecraft:twisting_vines_plant": {States: []{{Id: 18664, Properties: map[string]string{}}}}, "minecraft:vault": {States: []{{Id: 26650, Properties: map[string]string{"facing": "north", "ominous": "true", "vault_state": "inactive"}}, {Id: 26651, Properties: map[string]string{"facing": "north", "ominous": "true", "vault_state": "active"}}, {Id: 26652, Properties: map[string]string{"facing": "north", "ominous": "true", "vault_state": "unlocking"}}, {Id: 26653, Properties: map[string]string{"facing": "north", "ominous": "true", "vault_state": "ejecting"}}, {Id: 26654, Properties: map[string]string{"facing": "north", "ominous": "false", "vault_state": "inactive"}}, {Id: 26655, Properties: map[string]string{"facing": "north", "ominous": "false", "vault_state": "active"}}, {Id: 26656, Properties: map[string]string{"facing": "north", "ominous": "false", "vault_state": "unlocking"}}, {Id: 26657, Properties: map[string]string{"facing": "north", "ominous": "false", "vault_state": "ejecting"}}, {Id: 26658, Properties: map[string]string{"facing": "south", "ominous": "true", "vault_state": "inactive"}}, {Id: 26659, Properties: map[string]string{"facing": "south", "ominous": "true", "vault_state": "active"}}, {Id: 26660, Properties: map[string]string{"facing": "south", "ominous": "true", "vault_state": "unlocking"}}, {Id: 26661, Properties: map[string]string{"facing": "south", "ominous": "true", "vault_state": "ejecting"}}, {Id: 26662, Properties: map[string]string{"facing": "south", "ominous": "false", "vault_state": "inactive"}}, {Id: 26663, Properties: map[string]string{"facing": "south", "ominous": "false", "vault_state": "active"}}, {Id: 26664, Properties: map[string]string{"facing": "south", "ominous": "false", "vault_state": "unlocking"}}, {Id: 26665, Properties: map[string]string{"facing": "south", "ominous": "false", "vault_state": "ejecting"}}, {Id: 26666, Properties: map[string]string{"facing": "west", "ominous": "true", "vault_state": "inactive"}}, {Id: 26667, Properties: map[string]string{"facing": "west", "ominous": "true", "vault_state": "active"}}, {Id: 26668, Properties: map[string]string{"facing": "west", "ominous": "true", "vault_state": "unlocking"}}, {Id: 26669, Properties: map[string]string{"facing": "west", "ominous": "true", "vault_state": "ejecting"}}, {Id: 26670, Properties: map[string]string{"facing": "west", "ominous": "false", "vault_state": "inactive"}}, {Id: 26671, Properties: map[string]string{"facing": "west", "ominous": "false", "vault_state": "active"}}, {Id: 26672, Properties: map[string]string{"facing": "west", "ominous": "false", "vault_state": "unlocking"}}, {Id: 26673, Properties: map[string]string{"facing": "west", "ominous": "false", "vault_state": "ejecting"}}, {Id: 26674, Properties: map[string]string{"facing": "east", "ominous": "true", "vault_state": "inactive"}}, {Id: 26675, Properties: map[string]string{"facing": "east", "ominous": "true", "vault_state": "active"}}, {Id: 26676, Properties: map[string]string{"facing": "east", "ominous": "true", "vault_state": "unlocking"}}, {Id: 26677, Properties: map[string]string{"facing": "east", "ominous": "true", "vault_state": "ejecting"}}, {Id: 26678, Properties: map[string]string{"facing": "east", "ominous": "false", "vault_state": "inactive"}}, {Id: 26679, Properties: map[string]string{"facing": "east", "ominous": "false", "vault_state": "active"}}, {Id: 26680, Properties: map[string]string{"facing": "east", "ominous": "false", "vault_state": "unlocking"}}, {Id: 26681, Properties: map[string]string{"facing": "east", "ominous": "false", "vault_state": "ejecting"}}}}, "minecraft:verdant_froglight": {States: []{{Id: 26566, Properties: map[string]string{"axis": "x"}}, {Id: 26567, Properties: map[string]string{"axis": "y"}}, {Id: 26568, Properties: map[string]string{"axis": "z"}}}}, "minecraft:vine": {States: []{{Id: 6837, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6838, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6839, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6840, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6841, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6842, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6843, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6844, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6845, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6846, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6847, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6848, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6849, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6850, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6851, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6852, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "up": "false", "west": "false"}}, {Id: 6853, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "up": "true", "west": "true"}}, {Id: 6854, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "up": "true", "west": "false"}}, {Id: 6855, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "up": "false", "west": "true"}}, {Id: 6856, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "up": "false", "west": "false"}}, {Id: 6857, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "up": "true", "west": "true"}}, {Id: 6858, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "up": "true", "west": "false"}}, {Id: 6859, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "up": "false", "west": "true"}}, {Id: 6860, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "up": "false", "west": "false"}}, {Id: 6861, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "up": "true", "west": "true"}}, {Id: 6862, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "up": "true", "west": "false"}}, {Id: 6863, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "up": "false", "west": "true"}}, {Id: 6864, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "up": "false", "west": "false"}}, {Id: 6865, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "up": "true", "west": "true"}}, {Id: 6866, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "up": "true", "west": "false"}}, {Id: 6867, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "up": "false", "west": "true"}}, {Id: 6868, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "up": "false", "west": "false"}}}}, "minecraft:void_air": {States: []{{Id: 12958, Properties: map[string]string{}}}}, "minecraft:wall_torch": {States: []{{Id: 2356, Properties: map[string]string{"facing": "north"}}, {Id: 2357, Properties: map[string]string{"facing": "south"}}, {Id: 2358, Properties: map[string]string{"facing": "west"}}, {Id: 2359, Properties: map[string]string{"facing": "east"}}}}, "minecraft:warped_button": {States: []{{Id: 19124, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "true"}}, {Id: 19125, Properties: map[string]string{"face": "floor", "facing": "north", "powered": "false"}}, {Id: 19126, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "true"}}, {Id: 19127, Properties: map[string]string{"face": "floor", "facing": "south", "powered": "false"}}, {Id: 19128, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "true"}}, {Id: 19129, Properties: map[string]string{"face": "floor", "facing": "west", "powered": "false"}}, {Id: 19130, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "true"}}, {Id: 19131, Properties: map[string]string{"face": "floor", "facing": "east", "powered": "false"}}, {Id: 19132, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "true"}}, {Id: 19133, Properties: map[string]string{"face": "wall", "facing": "north", "powered": "false"}}, {Id: 19134, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "true"}}, {Id: 19135, Properties: map[string]string{"face": "wall", "facing": "south", "powered": "false"}}, {Id: 19136, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "true"}}, {Id: 19137, Properties: map[string]string{"face": "wall", "facing": "west", "powered": "false"}}, {Id: 19138, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "true"}}, {Id: 19139, Properties: map[string]string{"face": "wall", "facing": "east", "powered": "false"}}, {Id: 19140, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "true"}}, {Id: 19141, Properties: map[string]string{"face": "ceiling", "facing": "north", "powered": "false"}}, {Id: 19142, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "true"}}, {Id: 19143, Properties: map[string]string{"face": "ceiling", "facing": "south", "powered": "false"}}, {Id: 19144, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "true"}}, {Id: 19145, Properties: map[string]string{"face": "ceiling", "facing": "west", "powered": "false"}}, {Id: 19146, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "true"}}, {Id: 19147, Properties: map[string]string{"face": "ceiling", "facing": "east", "powered": "false"}}}}, "minecraft:warped_door": {States: []{{Id: 19212, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19213, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19214, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19215, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19216, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19217, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19218, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19219, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19220, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19221, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19222, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19223, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19224, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19225, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19226, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19227, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19228, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19229, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19230, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19231, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19232, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19233, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19234, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19235, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19236, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19237, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19238, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19239, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19240, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19241, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19242, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19243, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19244, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19245, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19246, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19247, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19248, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19249, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19250, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19251, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19252, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19253, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19254, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19255, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19256, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19257, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19258, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19259, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19260, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19261, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19262, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19263, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19264, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19265, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19266, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19267, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 19268, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 19269, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 19270, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 19271, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 19272, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 19273, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 19274, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 19275, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:warped_fence": {States: []{{Id: 18716, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 18717, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 18718, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 18719, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 18720, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 18721, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 18722, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 18723, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 18724, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 18725, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 18726, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 18727, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 18728, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 18729, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 18730, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 18731, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 18732, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 18733, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 18734, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 18735, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 18736, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 18737, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 18738, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 18739, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 18740, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 18741, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 18742, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 18743, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 18744, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 18745, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 18746, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 18747, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:warped_fence_gate": {States: []{{Id: 18908, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 18909, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 18910, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 18911, Properties: map[string]string{"facing": "north", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 18912, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 18913, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 18914, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 18915, Properties: map[string]string{"facing": "north", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 18916, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 18917, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 18918, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 18919, Properties: map[string]string{"facing": "south", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 18920, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 18921, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 18922, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 18923, Properties: map[string]string{"facing": "south", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 18924, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 18925, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 18926, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 18927, Properties: map[string]string{"facing": "west", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 18928, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 18929, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 18930, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 18931, Properties: map[string]string{"facing": "west", "in_wall": "false", "open": "false", "powered": "false"}}, {Id: 18932, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "true"}}, {Id: 18933, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "true", "powered": "false"}}, {Id: 18934, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "true"}}, {Id: 18935, Properties: map[string]string{"facing": "east", "in_wall": "true", "open": "false", "powered": "false"}}, {Id: 18936, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "true"}}, {Id: 18937, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "true", "powered": "false"}}, {Id: 18938, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "true"}}, {Id: 18939, Properties: map[string]string{"facing": "east", "in_wall": "false", "open": "false", "powered": "false"}}}}, "minecraft:warped_fungus": {States: []{{Id: 18592, Properties: map[string]string{}}}}, "minecraft:warped_hanging_sign": {States: []{{Id: 5346, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "true"}}, {Id: 5347, Properties: map[string]string{"attached": "true", "rotation": "0", "waterlogged": "false"}}, {Id: 5348, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "true"}}, {Id: 5349, Properties: map[string]string{"attached": "true", "rotation": "1", "waterlogged": "false"}}, {Id: 5350, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "true"}}, {Id: 5351, Properties: map[string]string{"attached": "true", "rotation": "2", "waterlogged": "false"}}, {Id: 5352, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "true"}}, {Id: 5353, Properties: map[string]string{"attached": "true", "rotation": "3", "waterlogged": "false"}}, {Id: 5354, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "true"}}, {Id: 5355, Properties: map[string]string{"attached": "true", "rotation": "4", "waterlogged": "false"}}, {Id: 5356, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "true"}}, {Id: 5357, Properties: map[string]string{"attached": "true", "rotation": "5", "waterlogged": "false"}}, {Id: 5358, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "true"}}, {Id: 5359, Properties: map[string]string{"attached": "true", "rotation": "6", "waterlogged": "false"}}, {Id: 5360, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "true"}}, {Id: 5361, Properties: map[string]string{"attached": "true", "rotation": "7", "waterlogged": "false"}}, {Id: 5362, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "true"}}, {Id: 5363, Properties: map[string]string{"attached": "true", "rotation": "8", "waterlogged": "false"}}, {Id: 5364, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "true"}}, {Id: 5365, Properties: map[string]string{"attached": "true", "rotation": "9", "waterlogged": "false"}}, {Id: 5366, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "true"}}, {Id: 5367, Properties: map[string]string{"attached": "true", "rotation": "10", "waterlogged": "false"}}, {Id: 5368, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "true"}}, {Id: 5369, Properties: map[string]string{"attached": "true", "rotation": "11", "waterlogged": "false"}}, {Id: 5370, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "true"}}, {Id: 5371, Properties: map[string]string{"attached": "true", "rotation": "12", "waterlogged": "false"}}, {Id: 5372, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "true"}}, {Id: 5373, Properties: map[string]string{"attached": "true", "rotation": "13", "waterlogged": "false"}}, {Id: 5374, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "true"}}, {Id: 5375, Properties: map[string]string{"attached": "true", "rotation": "14", "waterlogged": "false"}}, {Id: 5376, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "true"}}, {Id: 5377, Properties: map[string]string{"attached": "true", "rotation": "15", "waterlogged": "false"}}, {Id: 5378, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "true"}}, {Id: 5379, Properties: map[string]string{"attached": "false", "rotation": "0", "waterlogged": "false"}}, {Id: 5380, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "true"}}, {Id: 5381, Properties: map[string]string{"attached": "false", "rotation": "1", "waterlogged": "false"}}, {Id: 5382, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "true"}}, {Id: 5383, Properties: map[string]string{"attached": "false", "rotation": "2", "waterlogged": "false"}}, {Id: 5384, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "true"}}, {Id: 5385, Properties: map[string]string{"attached": "false", "rotation": "3", "waterlogged": "false"}}, {Id: 5386, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "true"}}, {Id: 5387, Properties: map[string]string{"attached": "false", "rotation": "4", "waterlogged": "false"}}, {Id: 5388, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "true"}}, {Id: 5389, Properties: map[string]string{"attached": "false", "rotation": "5", "waterlogged": "false"}}, {Id: 5390, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "true"}}, {Id: 5391, Properties: map[string]string{"attached": "false", "rotation": "6", "waterlogged": "false"}}, {Id: 5392, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "true"}}, {Id: 5393, Properties: map[string]string{"attached": "false", "rotation": "7", "waterlogged": "false"}}, {Id: 5394, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "true"}}, {Id: 5395, Properties: map[string]string{"attached": "false", "rotation": "8", "waterlogged": "false"}}, {Id: 5396, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "true"}}, {Id: 5397, Properties: map[string]string{"attached": "false", "rotation": "9", "waterlogged": "false"}}, {Id: 5398, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "true"}}, {Id: 5399, Properties: map[string]string{"attached": "false", "rotation": "10", "waterlogged": "false"}}, {Id: 5400, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "true"}}, {Id: 5401, Properties: map[string]string{"attached": "false", "rotation": "11", "waterlogged": "false"}}, {Id: 5402, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "true"}}, {Id: 5403, Properties: map[string]string{"attached": "false", "rotation": "12", "waterlogged": "false"}}, {Id: 5404, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "true"}}, {Id: 5405, Properties: map[string]string{"attached": "false", "rotation": "13", "waterlogged": "false"}}, {Id: 5406, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "true"}}, {Id: 5407, Properties: map[string]string{"attached": "false", "rotation": "14", "waterlogged": "false"}}, {Id: 5408, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "true"}}, {Id: 5409, Properties: map[string]string{"attached": "false", "rotation": "15", "waterlogged": "false"}}}}, "minecraft:warped_hyphae": {States: []{{Id: 18585, Properties: map[string]string{"axis": "x"}}, {Id: 18586, Properties: map[string]string{"axis": "y"}}, {Id: 18587, Properties: map[string]string{"axis": "z"}}}}, "minecraft:warped_nylium": {States: []{{Id: 18591, Properties: map[string]string{}}}}, "minecraft:warped_planks": {States: []{{Id: 18667, Properties: map[string]string{}}}}, "minecraft:warped_pressure_plate": {States: []{{Id: 18682, Properties: map[string]string{"powered": "true"}}, {Id: 18683, Properties: map[string]string{"powered": "false"}}}}, "minecraft:warped_roots": {States: []{{Id: 18594, Properties: map[string]string{}}}}, "minecraft:warped_sign": {States: []{{Id: 19308, Properties: map[string]string{"rotation": "0", "waterlogged": "true"}}, {Id: 19309, Properties: map[string]string{"rotation": "0", "waterlogged": "false"}}, {Id: 19310, Properties: map[string]string{"rotation": "1", "waterlogged": "true"}}, {Id: 19311, Properties: map[string]string{"rotation": "1", "waterlogged": "false"}}, {Id: 19312, Properties: map[string]string{"rotation": "2", "waterlogged": "true"}}, {Id: 19313, Properties: map[string]string{"rotation": "2", "waterlogged": "false"}}, {Id: 19314, Properties: map[string]string{"rotation": "3", "waterlogged": "true"}}, {Id: 19315, Properties: map[string]string{"rotation": "3", "waterlogged": "false"}}, {Id: 19316, Properties: map[string]string{"rotation": "4", "waterlogged": "true"}}, {Id: 19317, Properties: map[string]string{"rotation": "4", "waterlogged": "false"}}, {Id: 19318, Properties: map[string]string{"rotation": "5", "waterlogged": "true"}}, {Id: 19319, Properties: map[string]string{"rotation": "5", "waterlogged": "false"}}, {Id: 19320, Properties: map[string]string{"rotation": "6", "waterlogged": "true"}}, {Id: 19321, Properties: map[string]string{"rotation": "6", "waterlogged": "false"}}, {Id: 19322, Properties: map[string]string{"rotation": "7", "waterlogged": "true"}}, {Id: 19323, Properties: map[string]string{"rotation": "7", "waterlogged": "false"}}, {Id: 19324, Properties: map[string]string{"rotation": "8", "waterlogged": "true"}}, {Id: 19325, Properties: map[string]string{"rotation": "8", "waterlogged": "false"}}, {Id: 19326, Properties: map[string]string{"rotation": "9", "waterlogged": "true"}}, {Id: 19327, Properties: map[string]string{"rotation": "9", "waterlogged": "false"}}, {Id: 19328, Properties: map[string]string{"rotation": "10", "waterlogged": "true"}}, {Id: 19329, Properties: map[string]string{"rotation": "10", "waterlogged": "false"}}, {Id: 19330, Properties: map[string]string{"rotation": "11", "waterlogged": "true"}}, {Id: 19331, Properties: map[string]string{"rotation": "11", "waterlogged": "false"}}, {Id: 19332, Properties: map[string]string{"rotation": "12", "waterlogged": "true"}}, {Id: 19333, Properties: map[string]string{"rotation": "12", "waterlogged": "false"}}, {Id: 19334, Properties: map[string]string{"rotation": "13", "waterlogged": "true"}}, {Id: 19335, Properties: map[string]string{"rotation": "13", "waterlogged": "false"}}, {Id: 19336, Properties: map[string]string{"rotation": "14", "waterlogged": "true"}}, {Id: 19337, Properties: map[string]string{"rotation": "14", "waterlogged": "false"}}, {Id: 19338, Properties: map[string]string{"rotation": "15", "waterlogged": "true"}}, {Id: 19339, Properties: map[string]string{"rotation": "15", "waterlogged": "false"}}}}, "minecraft:warped_slab": {States: []{{Id: 18674, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 18675, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 18676, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 18677, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 18678, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 18679, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:warped_stairs": {States: []{{Id: 19020, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19021, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19022, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19023, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19024, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19025, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19026, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19027, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19028, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19029, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19030, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19031, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19032, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19033, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19034, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19035, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19036, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19037, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19038, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19039, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19040, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19041, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19042, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19043, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19044, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19045, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19046, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19047, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19048, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19049, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19050, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19051, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19052, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19053, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19054, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19055, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19056, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19057, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19058, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19059, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19060, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19061, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19062, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19063, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19064, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19065, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19066, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19067, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19068, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19069, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19070, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19071, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19072, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19073, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19074, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19075, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19076, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19077, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19078, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19079, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19080, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 19081, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 19082, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19083, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19084, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19085, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19086, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19087, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19088, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19089, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 19090, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 19091, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 19092, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 19093, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 19094, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 19095, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 19096, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 19097, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 19098, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 19099, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:warped_stem": {States: []{{Id: 18579, Properties: map[string]string{"axis": "x"}}, {Id: 18580, Properties: map[string]string{"axis": "y"}}, {Id: 18581, Properties: map[string]string{"axis": "z"}}}}, "minecraft:warped_trapdoor": {States: []{{Id: 18812, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18813, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18814, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18815, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18816, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18817, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18818, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18819, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18820, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18821, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18822, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18823, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18824, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18825, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18826, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18827, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18828, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18829, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18830, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18831, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18832, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18833, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18834, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18835, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18836, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18837, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18838, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18839, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18840, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18841, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18842, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18843, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18844, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18845, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18846, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18847, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18848, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18849, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18850, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18851, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18852, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18853, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18854, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18855, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18856, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18857, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18858, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18859, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18860, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18861, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18862, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18863, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18864, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18865, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18866, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18867, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 18868, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 18869, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 18870, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 18871, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 18872, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 18873, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 18874, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 18875, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:warped_wall_hanging_sign": {States: []{{Id: 5610, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 5611, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 5612, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 5613, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 5614, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 5615, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 5616, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 5617, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:warped_wall_sign": {States: []{{Id: 19348, Properties: map[string]string{"facing": "north", "waterlogged": "true"}}, {Id: 19349, Properties: map[string]string{"facing": "north", "waterlogged": "false"}}, {Id: 19350, Properties: map[string]string{"facing": "south", "waterlogged": "true"}}, {Id: 19351, Properties: map[string]string{"facing": "south", "waterlogged": "false"}}, {Id: 19352, Properties: map[string]string{"facing": "west", "waterlogged": "true"}}, {Id: 19353, Properties: map[string]string{"facing": "west", "waterlogged": "false"}}, {Id: 19354, Properties: map[string]string{"facing": "east", "waterlogged": "true"}}, {Id: 19355, Properties: map[string]string{"facing": "east", "waterlogged": "false"}}}}, "minecraft:warped_wart_block": {States: []{{Id: 18593, Properties: map[string]string{}}}}, "minecraft:water": {States: []{{Id: 80, Properties: map[string]string{"level": "0"}}, {Id: 81, Properties: map[string]string{"level": "1"}}, {Id: 82, Properties: map[string]string{"level": "2"}}, {Id: 83, Properties: map[string]string{"level": "3"}}, {Id: 84, Properties: map[string]string{"level": "4"}}, {Id: 85, Properties: map[string]string{"level": "5"}}, {Id: 86, Properties: map[string]string{"level": "6"}}, {Id: 87, Properties: map[string]string{"level": "7"}}, {Id: 88, Properties: map[string]string{"level": "8"}}, {Id: 89, Properties: map[string]string{"level": "9"}}, {Id: 90, Properties: map[string]string{"level": "10"}}, {Id: 91, Properties: map[string]string{"level": "11"}}, {Id: 92, Properties: map[string]string{"level": "12"}}, {Id: 93, Properties: map[string]string{"level": "13"}}, {Id: 94, Properties: map[string]string{"level": "14"}}, {Id: 95, Properties: map[string]string{"level": "15"}}}}, "minecraft:water_cauldron": {States: []{{Id: 7399, Properties: map[string]string{"level": "1"}}, {Id: 7400, Properties: map[string]string{"level": "2"}}, {Id: 7401, Properties: map[string]string{"level": "3"}}}}, "minecraft:waxed_chiseled_copper": {States: []{{Id: 22955, Properties: map[string]string{}}}}, "minecraft:waxed_copper_block": {States: []{{Id: 23300, Properties: map[string]string{}}}}, "minecraft:waxed_copper_bulb": {States: []{{Id: 24708, Properties: map[string]string{"lit": "true", "powered": "true"}}, {Id: 24709, Properties: map[string]string{"lit": "true", "powered": "false"}}, {Id: 24710, Properties: map[string]string{"lit": "false", "powered": "true"}}, {Id: 24711, Properties: map[string]string{"lit": "false", "powered": "false"}}}}, "minecraft:waxed_copper_door": {States: []{{Id: 23908, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23909, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23910, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23911, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23912, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23913, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23914, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23915, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23916, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23917, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23918, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23919, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23920, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23921, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23922, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23923, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23924, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23925, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23926, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23927, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23928, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23929, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23930, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23931, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23932, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23933, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23934, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23935, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23936, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23937, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23938, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23939, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23940, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23941, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23942, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23943, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23944, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23945, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23946, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23947, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23948, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23949, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23950, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23951, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23952, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23953, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23954, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23955, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23956, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23957, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23958, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23959, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23960, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23961, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23962, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23963, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23964, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23965, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23966, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23967, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23968, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23969, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23970, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23971, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:waxed_copper_grate": {States: []{{Id: 24684, Properties: map[string]string{"waterlogged": "true"}}, {Id: 24685, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:waxed_copper_trapdoor": {States: []{{Id: 24420, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24421, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24422, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24423, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24424, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24425, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24426, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24427, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24428, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24429, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24430, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24431, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24432, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24433, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24434, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24435, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24436, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24437, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24438, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24439, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24440, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24441, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24442, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24443, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24444, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24445, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24446, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24447, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24448, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24449, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24450, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24451, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24452, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24453, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24454, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24455, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24456, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24457, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24458, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24459, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24460, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24461, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24462, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24463, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24464, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24465, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24466, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24467, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24468, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24469, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24470, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24471, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24472, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24473, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24474, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24475, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24476, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24477, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24478, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24479, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24480, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24481, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24482, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24483, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:waxed_cut_copper": {States: []{{Id: 23307, Properties: map[string]string{}}}}, "minecraft:waxed_cut_copper_slab": {States: []{{Id: 23646, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 23647, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 23648, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 23649, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 23650, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 23651, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:waxed_cut_copper_stairs": {States: []{{Id: 23548, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23549, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23550, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23551, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23552, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23553, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23554, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23555, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23556, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23557, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23558, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23559, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23560, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23561, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23562, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23563, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23564, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23565, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23566, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23567, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23568, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23569, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23570, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23571, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23572, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23573, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23574, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23575, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23576, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23577, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23578, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23579, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23580, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23581, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23582, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23583, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23584, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23585, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23586, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23587, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23588, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23589, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23590, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23591, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23592, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23593, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23594, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23595, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23596, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23597, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23598, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23599, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23600, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23601, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23602, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23603, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23604, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23605, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23606, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23607, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23608, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23609, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23610, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23611, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23612, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23613, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23614, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23615, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23616, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23617, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23618, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23619, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23620, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23621, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23622, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23623, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23624, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23625, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23626, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23627, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:waxed_exposed_chiseled_copper": {States: []{{Id: 22954, Properties: map[string]string{}}}}, "minecraft:waxed_exposed_copper": {States: []{{Id: 23302, Properties: map[string]string{}}}}, "minecraft:waxed_exposed_copper_bulb": {States: []{{Id: 24712, Properties: map[string]string{"lit": "true", "powered": "true"}}, {Id: 24713, Properties: map[string]string{"lit": "true", "powered": "false"}}, {Id: 24714, Properties: map[string]string{"lit": "false", "powered": "true"}}, {Id: 24715, Properties: map[string]string{"lit": "false", "powered": "false"}}}}, "minecraft:waxed_exposed_copper_door": {States: []{{Id: 23972, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23973, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23974, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23975, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23976, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23977, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23978, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23979, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23980, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23981, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23982, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23983, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23984, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23985, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23986, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23987, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23988, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23989, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23990, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23991, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23992, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23993, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23994, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23995, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23996, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23997, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23998, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23999, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24000, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24001, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24002, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24003, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24004, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24005, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24006, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24007, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24008, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24009, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24010, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24011, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24012, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24013, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24014, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24015, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24016, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24017, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24018, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24019, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24020, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24021, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24022, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24023, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24024, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24025, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24026, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24027, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24028, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24029, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24030, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24031, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24032, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24033, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24034, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24035, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:waxed_exposed_copper_grate": {States: []{{Id: 24686, Properties: map[string]string{"waterlogged": "true"}}, {Id: 24687, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:waxed_exposed_copper_trapdoor": {States: []{{Id: 24484, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24485, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24486, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24487, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24488, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24489, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24490, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24491, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24492, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24493, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24494, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24495, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24496, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24497, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24498, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24499, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24500, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24501, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24502, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24503, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24504, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24505, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24506, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24507, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24508, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24509, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24510, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24511, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24512, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24513, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24514, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24515, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24516, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24517, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24518, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24519, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24520, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24521, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24522, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24523, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24524, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24525, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24526, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24527, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24528, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24529, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24530, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24531, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24532, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24533, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24534, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24535, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24536, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24537, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24538, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24539, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24540, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24541, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24542, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24543, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24544, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24545, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24546, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24547, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:waxed_exposed_cut_copper": {States: []{{Id: 23306, Properties: map[string]string{}}}}, "minecraft:waxed_exposed_cut_copper_slab": {States: []{{Id: 23640, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 23641, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 23642, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 23643, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 23644, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 23645, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:waxed_exposed_cut_copper_stairs": {States: []{{Id: 23468, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23469, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23470, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23471, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23472, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23473, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23474, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23475, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23476, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23477, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23478, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23479, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23480, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23481, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23482, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23483, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23484, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23485, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23486, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23487, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23488, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23489, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23490, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23491, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23492, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23493, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23494, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23495, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23496, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23497, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23498, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23499, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23500, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23501, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23502, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23503, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23504, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23505, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23506, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23507, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23508, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23509, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23510, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23511, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23512, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23513, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23514, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23515, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23516, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23517, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23518, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23519, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23520, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23521, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23522, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23523, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23524, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23525, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23526, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23527, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23528, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23529, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23530, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23531, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23532, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23533, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23534, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23535, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23536, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23537, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23538, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23539, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23540, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23541, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23542, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23543, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23544, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23545, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23546, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23547, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:waxed_oxidized_chiseled_copper": {States: []{{Id: 22952, Properties: map[string]string{}}}}, "minecraft:waxed_oxidized_copper": {States: []{{Id: 23303, Properties: map[string]string{}}}}, "minecraft:waxed_oxidized_copper_bulb": {States: []{{Id: 24720, Properties: map[string]string{"lit": "true", "powered": "true"}}, {Id: 24721, Properties: map[string]string{"lit": "true", "powered": "false"}}, {Id: 24722, Properties: map[string]string{"lit": "false", "powered": "true"}}, {Id: 24723, Properties: map[string]string{"lit": "false", "powered": "false"}}}}, "minecraft:waxed_oxidized_copper_door": {States: []{{Id: 24036, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24037, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24038, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24039, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24040, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24041, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24042, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24043, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24044, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24045, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24046, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24047, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24048, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24049, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24050, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24051, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24052, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24053, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24054, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24055, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24056, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24057, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24058, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24059, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24060, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24061, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24062, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24063, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24064, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24065, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24066, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24067, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24068, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24069, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24070, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24071, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24072, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24073, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24074, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24075, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24076, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24077, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24078, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24079, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24080, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24081, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24082, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24083, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24084, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24085, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24086, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24087, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24088, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24089, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24090, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24091, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24092, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24093, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24094, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24095, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24096, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24097, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24098, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24099, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:waxed_oxidized_copper_grate": {States: []{{Id: 24690, Properties: map[string]string{"waterlogged": "true"}}, {Id: 24691, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:waxed_oxidized_copper_trapdoor": {States: []{{Id: 24548, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24549, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24550, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24551, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24552, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24553, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24554, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24555, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24556, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24557, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24558, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24559, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24560, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24561, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24562, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24563, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24564, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24565, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24566, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24567, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24568, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24569, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24570, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24571, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24572, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24573, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24574, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24575, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24576, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24577, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24578, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24579, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24580, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24581, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24582, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24583, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24584, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24585, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24586, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24587, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24588, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24589, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24590, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24591, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24592, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24593, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24594, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24595, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24596, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24597, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24598, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24599, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24600, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24601, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24602, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24603, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24604, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24605, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24606, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24607, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24608, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24609, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24610, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24611, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:waxed_oxidized_cut_copper": {States: []{{Id: 23304, Properties: map[string]string{}}}}, "minecraft:waxed_oxidized_cut_copper_slab": {States: []{{Id: 23628, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 23629, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 23630, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 23631, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 23632, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 23633, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:waxed_oxidized_cut_copper_stairs": {States: []{{Id: 23308, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23309, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23310, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23311, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23312, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23313, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23314, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23315, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23316, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23317, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23318, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23319, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23320, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23321, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23322, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23323, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23324, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23325, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23326, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23327, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23328, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23329, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23330, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23331, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23332, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23333, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23334, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23335, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23336, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23337, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23338, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23339, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23340, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23341, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23342, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23343, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23344, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23345, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23346, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23347, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23348, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23349, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23350, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23351, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23352, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23353, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23354, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23355, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23356, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23357, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23358, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23359, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23360, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23361, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23362, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23363, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23364, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23365, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23366, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23367, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23368, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23369, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23370, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23371, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23372, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23373, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23374, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23375, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23376, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23377, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23378, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23379, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23380, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23381, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23382, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23383, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23384, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23385, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23386, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23387, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:waxed_weathered_chiseled_copper": {States: []{{Id: 22953, Properties: map[string]string{}}}}, "minecraft:waxed_weathered_copper": {States: []{{Id: 23301, Properties: map[string]string{}}}}, "minecraft:waxed_weathered_copper_bulb": {States: []{{Id: 24716, Properties: map[string]string{"lit": "true", "powered": "true"}}, {Id: 24717, Properties: map[string]string{"lit": "true", "powered": "false"}}, {Id: 24718, Properties: map[string]string{"lit": "false", "powered": "true"}}, {Id: 24719, Properties: map[string]string{"lit": "false", "powered": "false"}}}}, "minecraft:waxed_weathered_copper_door": {States: []{{Id: 24100, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24101, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24102, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24103, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24104, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24105, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24106, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24107, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24108, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24109, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24110, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24111, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24112, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24113, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24114, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24115, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24116, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24117, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24118, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24119, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24120, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24121, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24122, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24123, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24124, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24125, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24126, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24127, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24128, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24129, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24130, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24131, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24132, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24133, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24134, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24135, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24136, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24137, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24138, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24139, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24140, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24141, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24142, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24143, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24144, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24145, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24146, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24147, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24148, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24149, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24150, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24151, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24152, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24153, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24154, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24155, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 24156, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 24157, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 24158, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 24159, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 24160, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 24161, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 24162, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 24163, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:waxed_weathered_copper_grate": {States: []{{Id: 24688, Properties: map[string]string{"waterlogged": "true"}}, {Id: 24689, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:waxed_weathered_copper_trapdoor": {States: []{{Id: 24612, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24613, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24614, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24615, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24616, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24617, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24618, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24619, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24620, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24621, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24622, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24623, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24624, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24625, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24626, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24627, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24628, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24629, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24630, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24631, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24632, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24633, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24634, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24635, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24636, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24637, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24638, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24639, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24640, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24641, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24642, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24643, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24644, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24645, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24646, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24647, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24648, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24649, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24650, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24651, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24652, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24653, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24654, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24655, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24656, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24657, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24658, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24659, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24660, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24661, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24662, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24663, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24664, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24665, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24666, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24667, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24668, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24669, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24670, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24671, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24672, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24673, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24674, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24675, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:waxed_weathered_cut_copper": {States: []{{Id: 23305, Properties: map[string]string{}}}}, "minecraft:waxed_weathered_cut_copper_slab": {States: []{{Id: 23634, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 23635, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 23636, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 23637, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 23638, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 23639, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:waxed_weathered_cut_copper_stairs": {States: []{{Id: 23388, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23389, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23390, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23391, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23392, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23393, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23394, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23395, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23396, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23397, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23398, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23399, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23400, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23401, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23402, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23403, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23404, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23405, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23406, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23407, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23408, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23409, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23410, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23411, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23412, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23413, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23414, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23415, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23416, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23417, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23418, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23419, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23420, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23421, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23422, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23423, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23424, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23425, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23426, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23427, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23428, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23429, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23430, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23431, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23432, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23433, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23434, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23435, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23436, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23437, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23438, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23439, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23440, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23441, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23442, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23443, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23444, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23445, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23446, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23447, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23448, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23449, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23450, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23451, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23452, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23453, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23454, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23455, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23456, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23457, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23458, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23459, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23460, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23461, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23462, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23463, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23464, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23465, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23466, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23467, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:weathered_chiseled_copper": {States: []{{Id: 22949, Properties: map[string]string{}}}}, "minecraft:weathered_copper": {States: []{{Id: 22940, Properties: map[string]string{}}}}, "minecraft:weathered_copper_bulb": {States: []{{Id: 24700, Properties: map[string]string{"lit": "true", "powered": "true"}}, {Id: 24701, Properties: map[string]string{"lit": "true", "powered": "false"}}, {Id: 24702, Properties: map[string]string{"lit": "false", "powered": "true"}}, {Id: 24703, Properties: map[string]string{"lit": "false", "powered": "false"}}}}, "minecraft:weathered_copper_door": {States: []{{Id: 23844, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23845, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23846, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23847, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23848, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23849, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23850, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23851, Properties: map[string]string{"facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23852, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23853, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23854, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23855, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23856, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23857, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23858, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23859, Properties: map[string]string{"facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23860, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23861, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23862, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23863, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23864, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23865, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23866, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23867, Properties: map[string]string{"facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23868, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23869, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23870, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23871, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23872, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23873, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23874, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23875, Properties: map[string]string{"facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23876, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23877, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23878, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23879, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23880, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23881, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23882, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23883, Properties: map[string]string{"facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23884, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23885, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23886, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23887, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23888, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23889, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23890, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23891, Properties: map[string]string{"facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23892, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23893, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23894, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23895, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23896, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23897, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23898, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23899, Properties: map[string]string{"facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false"}}, {Id: 23900, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true"}}, {Id: 23901, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false"}}, {Id: 23902, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true"}}, {Id: 23903, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false"}}, {Id: 23904, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true"}}, {Id: 23905, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false"}}, {Id: 23906, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true"}}, {Id: 23907, Properties: map[string]string{"facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false"}}}}, "minecraft:weathered_copper_grate": {States: []{{Id: 24680, Properties: map[string]string{"waterlogged": "true"}}, {Id: 24681, Properties: map[string]string{"waterlogged": "false"}}}}, "minecraft:weathered_copper_trapdoor": {States: []{{Id: 24356, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24357, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24358, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24359, Properties: map[string]string{"facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24360, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24361, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24362, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24363, Properties: map[string]string{"facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24364, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24365, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24366, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24367, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24368, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24369, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24370, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24371, Properties: map[string]string{"facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24372, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24373, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24374, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24375, Properties: map[string]string{"facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24376, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24377, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24378, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24379, Properties: map[string]string{"facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24380, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24381, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24382, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24383, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24384, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24385, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24386, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24387, Properties: map[string]string{"facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24388, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24389, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24390, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24391, Properties: map[string]string{"facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24392, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24393, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24394, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24395, Properties: map[string]string{"facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24396, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24397, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24398, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24399, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24400, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24401, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24402, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24403, Properties: map[string]string{"facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24404, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24405, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24406, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24407, Properties: map[string]string{"facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24408, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24409, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24410, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24411, Properties: map[string]string{"facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false"}}, {Id: 24412, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true"}}, {Id: 24413, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false"}}, {Id: 24414, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true"}}, {Id: 24415, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false"}}, {Id: 24416, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true"}}, {Id: 24417, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false"}}, {Id: 24418, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true"}}, {Id: 24419, Properties: map[string]string{"facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false"}}}}, "minecraft:weathered_cut_copper": {States: []{{Id: 22945, Properties: map[string]string{}}}}, "minecraft:weathered_cut_copper_slab": {States: []{{Id: 23282, Properties: map[string]string{"type": "top", "waterlogged": "true"}}, {Id: 23283, Properties: map[string]string{"type": "top", "waterlogged": "false"}}, {Id: 23284, Properties: map[string]string{"type": "bottom", "waterlogged": "true"}}, {Id: 23285, Properties: map[string]string{"type": "bottom", "waterlogged": "false"}}, {Id: 23286, Properties: map[string]string{"type": "double", "waterlogged": "true"}}, {Id: 23287, Properties: map[string]string{"type": "double", "waterlogged": "false"}}}}, "minecraft:weathered_cut_copper_stairs": {States: []{{Id: 23036, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23037, Properties: map[string]string{"facing": "north", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23038, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23039, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23040, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23041, Properties: map[string]string{"facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23042, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23043, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23044, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23045, Properties: map[string]string{"facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23046, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23047, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23048, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23049, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23050, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23051, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23052, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23053, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23054, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23055, Properties: map[string]string{"facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23056, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23057, Properties: map[string]string{"facing": "south", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23058, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23059, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23060, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23061, Properties: map[string]string{"facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23062, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23063, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23064, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23065, Properties: map[string]string{"facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23066, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23067, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23068, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23069, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23070, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23071, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23072, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23073, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23074, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23075, Properties: map[string]string{"facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23076, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23077, Properties: map[string]string{"facing": "west", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23078, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23079, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23080, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23081, Properties: map[string]string{"facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23082, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23083, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23084, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23085, Properties: map[string]string{"facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23086, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23087, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23088, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23089, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23090, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23091, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23092, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23093, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23094, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23095, Properties: map[string]string{"facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23096, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "true"}}, {Id: 23097, Properties: map[string]string{"facing": "east", "half": "top", "shape": "straight", "waterlogged": "false"}}, {Id: 23098, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23099, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23100, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23101, Properties: map[string]string{"facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23102, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23103, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23104, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23105, Properties: map[string]string{"facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false"}}, {Id: 23106, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true"}}, {Id: 23107, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false"}}, {Id: 23108, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true"}}, {Id: 23109, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false"}}, {Id: 23110, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true"}}, {Id: 23111, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false"}}, {Id: 23112, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true"}}, {Id: 23113, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false"}}, {Id: 23114, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true"}}, {Id: 23115, Properties: map[string]string{"facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false"}}}}, "minecraft:weeping_vines": {States: []{{Id: 18611, Properties: map[string]string{"age": "0"}}, {Id: 18612, Properties: map[string]string{"age": "1"}}, {Id: 18613, Properties: map[string]string{"age": "2"}}, {Id: 18614, Properties: map[string]string{"age": "3"}}, {Id: 18615, Properties: map[string]string{"age": "4"}}, {Id: 18616, Properties: map[string]string{"age": "5"}}, {Id: 18617, Properties: map[string]string{"age": "6"}}, {Id: 18618, Properties: map[string]string{"age": "7"}}, {Id: 18619, Properties: map[string]string{"age": "8"}}, {Id: 18620, Properties: map[string]string{"age": "9"}}, {Id: 18621, Properties: map[string]string{"age": "10"}}, {Id: 18622, Properties: map[string]string{"age": "11"}}, {Id: 18623, Properties: map[string]string{"age": "12"}}, {Id: 18624, Properties: map[string]string{"age": "13"}}, {Id: 18625, Properties: map[string]string{"age": "14"}}, {Id: 18626, Properties: map[string]string{"age": "15"}}, {Id: 18627, Properties: map[string]string{"age": "16"}}, {Id: 18628, Properties: map[string]string{"age": "17"}}, {Id: 18629, Properties: map[string]string{"age": "18"}}, {Id: 18630, Properties: map[string]string{"age": "19"}}, {Id: 18631, Properties: map[string]string{"age": "20"}}, {Id: 18632, Properties: map[string]string{"age": "21"}}, {Id: 18633, Properties: map[string]string{"age": "22"}}, {Id: 18634, Properties: map[string]string{"age": "23"}}, {Id: 18635, Properties: map[string]string{"age": "24"}}, {Id: 18636, Properties: map[string]string{"age": "25"}}}}, "minecraft:weeping_vines_plant": {States: []{{Id: 18637, Properties: map[string]string{}}}}, "minecraft:wet_sponge": {States: []{{Id: 518, Properties: map[string]string{}}}}, "minecraft:wheat": {States: []{{Id: 4278, Properties: map[string]string{"age": "0"}}, {Id: 4279, Properties: map[string]string{"age": "1"}}, {Id: 4280, Properties: map[string]string{"age": "2"}}, {Id: 4281, Properties: map[string]string{"age": "3"}}, {Id: 4282, Properties: map[string]string{"age": "4"}}, {Id: 4283, Properties: map[string]string{"age": "5"}}, {Id: 4284, Properties: map[string]string{"age": "6"}}, {Id: 4285, Properties: map[string]string{"age": "7"}}}}, "minecraft:white_banner": {States: []{{Id: 10759, Properties: map[string]string{"rotation": "0"}}, {Id: 10760, Properties: map[string]string{"rotation": "1"}}, {Id: 10761, Properties: map[string]string{"rotation": "2"}}, {Id: 10762, Properties: map[string]string{"rotation": "3"}}, {Id: 10763, Properties: map[string]string{"rotation": "4"}}, {Id: 10764, Properties: map[string]string{"rotation": "5"}}, {Id: 10765, Properties: map[string]string{"rotation": "6"}}, {Id: 10766, Properties: map[string]string{"rotation": "7"}}, {Id: 10767, Properties: map[string]string{"rotation": "8"}}, {Id: 10768, Properties: map[string]string{"rotation": "9"}}, {Id: 10769, Properties: map[string]string{"rotation": "10"}}, {Id: 10770, Properties: map[string]string{"rotation": "11"}}, {Id: 10771, Properties: map[string]string{"rotation": "12"}}, {Id: 10772, Properties: map[string]string{"rotation": "13"}}, {Id: 10773, Properties: map[string]string{"rotation": "14"}}, {Id: 10774, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:white_bed": {States: []{{Id: 1688, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1689, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1690, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1691, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1692, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1693, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1694, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1695, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1696, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1697, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1698, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1699, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1700, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1701, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1702, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1703, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:white_candle": {States: []{{Id: 20741, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20742, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20743, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20744, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20745, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20746, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20747, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20748, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20749, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20750, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20751, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20752, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20753, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20754, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20755, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20756, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:white_candle_cake": {States: []{{Id: 20999, Properties: map[string]string{"lit": "true"}}, {Id: 21000, Properties: map[string]string{"lit": "false"}}}}, "minecraft:white_carpet": {States: []{{Id: 10728, Properties: map[string]string{}}}}, "minecraft:white_concrete": {States: []{{Id: 12728, Properties: map[string]string{}}}}, "minecraft:white_concrete_powder": {States: []{{Id: 12744, Properties: map[string]string{}}}}, "minecraft:white_glazed_terracotta": {States: []{{Id: 12664, Properties: map[string]string{"facing": "north"}}, {Id: 12665, Properties: map[string]string{"facing": "south"}}, {Id: 12666, Properties: map[string]string{"facing": "west"}}, {Id: 12667, Properties: map[string]string{"facing": "east"}}}}, "minecraft:white_shulker_box": {States: []{{Id: 12568, Properties: map[string]string{"facing": "north"}}, {Id: 12569, Properties: map[string]string{"facing": "east"}}, {Id: 12570, Properties: map[string]string{"facing": "south"}}, {Id: 12571, Properties: map[string]string{"facing": "west"}}, {Id: 12572, Properties: map[string]string{"facing": "up"}}, {Id: 12573, Properties: map[string]string{"facing": "down"}}}}, "minecraft:white_stained_glass": {States: []{{Id: 5945, Properties: map[string]string{}}}}, "minecraft:white_stained_glass_pane": {States: []{{Id: 9372, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9373, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9374, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9375, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9376, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9377, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9378, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9379, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9380, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9381, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9382, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9383, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9384, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9385, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9386, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9387, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9388, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9389, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9390, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9391, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9392, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9393, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9394, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9395, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9396, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9397, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9398, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9399, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9400, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9401, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9402, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9403, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:white_terracotta": {States: []{{Id: 9356, Properties: map[string]string{}}}}, "minecraft:white_tulip": {States: []{{Id: 2083, Properties: map[string]string{}}}}, "minecraft:white_wall_banner": {States: []{{Id: 11015, Properties: map[string]string{"facing": "north"}}, {Id: 11016, Properties: map[string]string{"facing": "south"}}, {Id: 11017, Properties: map[string]string{"facing": "west"}}, {Id: 11018, Properties: map[string]string{"facing": "east"}}}}, "minecraft:white_wool": {States: []{{Id: 2047, Properties: map[string]string{}}}}, "minecraft:wither_rose": {States: []{{Id: 2087, Properties: map[string]string{}}}}, "minecraft:wither_skeleton_skull": {States: []{{Id: 8867, Properties: map[string]string{"powered": "true", "rotation": "0"}}, {Id: 8868, Properties: map[string]string{"powered": "true", "rotation": "1"}}, {Id: 8869, Properties: map[string]string{"powered": "true", "rotation": "2"}}, {Id: 8870, Properties: map[string]string{"powered": "true", "rotation": "3"}}, {Id: 8871, Properties: map[string]string{"powered": "true", "rotation": "4"}}, {Id: 8872, Properties: map[string]string{"powered": "true", "rotation": "5"}}, {Id: 8873, Properties: map[string]string{"powered": "true", "rotation": "6"}}, {Id: 8874, Properties: map[string]string{"powered": "true", "rotation": "7"}}, {Id: 8875, Properties: map[string]string{"powered": "true", "rotation": "8"}}, {Id: 8876, Properties: map[string]string{"powered": "true", "rotation": "9"}}, {Id: 8877, Properties: map[string]string{"powered": "true", "rotation": "10"}}, {Id: 8878, Properties: map[string]string{"powered": "true", "rotation": "11"}}, {Id: 8879, Properties: map[string]string{"powered": "true", "rotation": "12"}}, {Id: 8880, Properties: map[string]string{"powered": "true", "rotation": "13"}}, {Id: 8881, Properties: map[string]string{"powered": "true", "rotation": "14"}}, {Id: 8882, Properties: map[string]string{"powered": "true", "rotation": "15"}}, {Id: 8883, Properties: map[string]string{"powered": "false", "rotation": "0"}}, {Id: 8884, Properties: map[string]string{"powered": "false", "rotation": "1"}}, {Id: 8885, Properties: map[string]string{"powered": "false", "rotation": "2"}}, {Id: 8886, Properties: map[string]string{"powered": "false", "rotation": "3"}}, {Id: 8887, Properties: map[string]string{"powered": "false", "rotation": "4"}}, {Id: 8888, Properties: map[string]string{"powered": "false", "rotation": "5"}}, {Id: 8889, Properties: map[string]string{"powered": "false", "rotation": "6"}}, {Id: 8890, Properties: map[string]string{"powered": "false", "rotation": "7"}}, {Id: 8891, Properties: map[string]string{"powered": "false", "rotation": "8"}}, {Id: 8892, Properties: map[string]string{"powered": "false", "rotation": "9"}}, {Id: 8893, Properties: map[string]string{"powered": "false", "rotation": "10"}}, {Id: 8894, Properties: map[string]string{"powered": "false", "rotation": "11"}}, {Id: 8895, Properties: map[string]string{"powered": "false", "rotation": "12"}}, {Id: 8896, Properties: map[string]string{"powered": "false", "rotation": "13"}}, {Id: 8897, Properties: map[string]string{"powered": "false", "rotation": "14"}}, {Id: 8898, Properties: map[string]string{"powered": "false", "rotation": "15"}}}}, "minecraft:wither_skeleton_wall_skull": {States: []{{Id: 8899, Properties: map[string]string{"facing": "north", "powered": "true"}}, {Id: 8900, Properties: map[string]string{"facing": "north", "powered": "false"}}, {Id: 8901, Properties: map[string]string{"facing": "south", "powered": "true"}}, {Id: 8902, Properties: map[string]string{"facing": "south", "powered": "false"}}, {Id: 8903, Properties: map[string]string{"facing": "west", "powered": "true"}}, {Id: 8904, Properties: map[string]string{"facing": "west", "powered": "false"}}, {Id: 8905, Properties: map[string]string{"facing": "east", "powered": "true"}}, {Id: 8906, Properties: map[string]string{"facing": "east", "powered": "false"}}}}, "minecraft:yellow_banner": {States: []{{Id: 10823, Properties: map[string]string{"rotation": "0"}}, {Id: 10824, Properties: map[string]string{"rotation": "1"}}, {Id: 10825, Properties: map[string]string{"rotation": "2"}}, {Id: 10826, Properties: map[string]string{"rotation": "3"}}, {Id: 10827, Properties: map[string]string{"rotation": "4"}}, {Id: 10828, Properties: map[string]string{"rotation": "5"}}, {Id: 10829, Properties: map[string]string{"rotation": "6"}}, {Id: 10830, Properties: map[string]string{"rotation": "7"}}, {Id: 10831, Properties: map[string]string{"rotation": "8"}}, {Id: 10832, Properties: map[string]string{"rotation": "9"}}, {Id: 10833, Properties: map[string]string{"rotation": "10"}}, {Id: 10834, Properties: map[string]string{"rotation": "11"}}, {Id: 10835, Properties: map[string]string{"rotation": "12"}}, {Id: 10836, Properties: map[string]string{"rotation": "13"}}, {Id: 10837, Properties: map[string]string{"rotation": "14"}}, {Id: 10838, Properties: map[string]string{"rotation": "15"}}}}, "minecraft:yellow_bed": {States: []{{Id: 1752, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "head"}}, {Id: 1753, Properties: map[string]string{"facing": "north", "occupied": "true", "part": "foot"}}, {Id: 1754, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "head"}}, {Id: 1755, Properties: map[string]string{"facing": "north", "occupied": "false", "part": "foot"}}, {Id: 1756, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "head"}}, {Id: 1757, Properties: map[string]string{"facing": "south", "occupied": "true", "part": "foot"}}, {Id: 1758, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "head"}}, {Id: 1759, Properties: map[string]string{"facing": "south", "occupied": "false", "part": "foot"}}, {Id: 1760, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "head"}}, {Id: 1761, Properties: map[string]string{"facing": "west", "occupied": "true", "part": "foot"}}, {Id: 1762, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "head"}}, {Id: 1763, Properties: map[string]string{"facing": "west", "occupied": "false", "part": "foot"}}, {Id: 1764, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "head"}}, {Id: 1765, Properties: map[string]string{"facing": "east", "occupied": "true", "part": "foot"}}, {Id: 1766, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "head"}}, {Id: 1767, Properties: map[string]string{"facing": "east", "occupied": "false", "part": "foot"}}}}, "minecraft:yellow_candle": {States: []{{Id: 20805, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "true"}}, {Id: 20806, Properties: map[string]string{"candles": "1", "lit": "true", "waterlogged": "false"}}, {Id: 20807, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "true"}}, {Id: 20808, Properties: map[string]string{"candles": "1", "lit": "false", "waterlogged": "false"}}, {Id: 20809, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "true"}}, {Id: 20810, Properties: map[string]string{"candles": "2", "lit": "true", "waterlogged": "false"}}, {Id: 20811, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "true"}}, {Id: 20812, Properties: map[string]string{"candles": "2", "lit": "false", "waterlogged": "false"}}, {Id: 20813, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "true"}}, {Id: 20814, Properties: map[string]string{"candles": "3", "lit": "true", "waterlogged": "false"}}, {Id: 20815, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "true"}}, {Id: 20816, Properties: map[string]string{"candles": "3", "lit": "false", "waterlogged": "false"}}, {Id: 20817, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "true"}}, {Id: 20818, Properties: map[string]string{"candles": "4", "lit": "true", "waterlogged": "false"}}, {Id: 20819, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "true"}}, {Id: 20820, Properties: map[string]string{"candles": "4", "lit": "false", "waterlogged": "false"}}}}, "minecraft:yellow_candle_cake": {States: []{{Id: 21007, Properties: map[string]string{"lit": "true"}}, {Id: 21008, Properties: map[string]string{"lit": "false"}}}}, "minecraft:yellow_carpet": {States: []{{Id: 10732, Properties: map[string]string{}}}}, "minecraft:yellow_concrete": {States: []{{Id: 12732, Properties: map[string]string{}}}}, "minecraft:yellow_concrete_powder": {States: []{{Id: 12748, Properties: map[string]string{}}}}, "minecraft:yellow_glazed_terracotta": {States: []{{Id: 12680, Properties: map[string]string{"facing": "north"}}, {Id: 12681, Properties: map[string]string{"facing": "south"}}, {Id: 12682, Properties: map[string]string{"facing": "west"}}, {Id: 12683, Properties: map[string]string{"facing": "east"}}}}, "minecraft:yellow_shulker_box": {States: []{{Id: 12592, Properties: map[string]string{"facing": "north"}}, {Id: 12593, Properties: map[string]string{"facing": "east"}}, {Id: 12594, Properties: map[string]string{"facing": "south"}}, {Id: 12595, Properties: map[string]string{"facing": "west"}}, {Id: 12596, Properties: map[string]string{"facing": "up"}}, {Id: 12597, Properties: map[string]string{"facing": "down"}}}}, "minecraft:yellow_stained_glass": {States: []{{Id: 5949, Properties: map[string]string{}}}}, "minecraft:yellow_stained_glass_pane": {States: []{{Id: 9500, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9501, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9502, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9503, Properties: map[string]string{"east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9504, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9505, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9506, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9507, Properties: map[string]string{"east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9508, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9509, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9510, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9511, Properties: map[string]string{"east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9512, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9513, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9514, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9515, Properties: map[string]string{"east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9516, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9517, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9518, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9519, Properties: map[string]string{"east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9520, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9521, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9522, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9523, Properties: map[string]string{"east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false"}}, {Id: 9524, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true"}}, {Id: 9525, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false"}}, {Id: 9526, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true"}}, {Id: 9527, Properties: map[string]string{"east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false"}}, {Id: 9528, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true"}}, {Id: 9529, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false"}}, {Id: 9530, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true"}}, {Id: 9531, Properties: map[string]string{"east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false"}}}}, "minecraft:yellow_terracotta": {States: []{{Id: 9360, Properties: map[string]string{}}}}, "minecraft:yellow_wall_banner": {States: []{{Id: 11031, Properties: map[string]string{"facing": "north"}}, {Id: 11032, Properties: map[string]string{"facing": "south"}}, {Id: 11033, Properties: map[string]string{"facing": "west"}}, {Id: 11034, Properties: map[string]string{"facing": "east"}}}}, "minecraft:yellow_wool": {States: []{{Id: 2051, Properties: map[string]string{}}}}, "minecraft:zombie_head": {States: []{{Id: 8907, Properties: map[string]string{"powered": "true", "rotation": "0"}}, {Id: 8908, Properties: map[string]string{"powered": "true", "rotation": "1"}}, {Id: 8909, Properties: map[string]string{"powered": "true", "rotation": "2"}}, {Id: 8910, Properties: map[string]string{"powered": "true", "rotation": "3"}}, {Id: 8911, Properties: map[string]string{"powered": "true", "rotation": "4"}}, {Id: 8912, Properties: map[string]string{"powered": "true", "rotation": "5"}}, {Id: 8913, Properties: map[string]string{"powered": "true", "rotation": "6"}}, {Id: 8914, Properties: map[string]string{"powered": "true", "rotation": "7"}}, {Id: 8915, Properties: map[string]string{"powered": "true", "rotation": "8"}}, {Id: 8916, Properties: map[string]string{"powered": "true", "rotation": "9"}}, {Id: 8917, Properties: map[string]string{"powered": "true", "rotation": "10"}}, {Id: 8918, Properties: map[string]string{"powered": "true", "rotation": "11"}}, {Id: 8919, Properties: map[string]string{"powered": "true", "rotation": "12"}}, {Id: 8920, Properties: map[string]string{"powered": "true", "rotation": "13"}}, {Id: 8921, Properties: map[string]string{"powered": "true", "rotation": "14"}}, {Id: 8922, Properties: map[string]string{"powered": "true", "rotation": "15"}}, {Id: 8923, Properties: map[string]string{"powered": "false", "rotation": "0"}}, {Id: 8924, Properties: map[string]string{"powered": "false", "rotation": "1"}}, {Id: 8925, Properties: map[string]string{"powered": "false", "rotation": "2"}}, {Id: 8926, Properties: map[string]string{"powered": "false", "rotation": "3"}}, {Id: 8927, Properties: map[string]string{"powered": "false", "rotation": "4"}}, {Id: 8928, Properties: map[string]string{"powered": "false", "rotation": "5"}}, {Id: 8929, Properties: map[string]string{"powered": "false", "rotation": "6"}}, {Id: 8930, Properties: map[string]string{"powered": "false", "rotation": "7"}}, {Id: 8931, Properties: map[string]string{"powered": "false", "rotation": "8"}}, {Id: 8932, Properties: map[string]string{"powered": "false", "rotation": "9"}}, {Id: 8933, Properties: map[string]string{"powered": "false", "rotation": "10"}}, {Id: 8934, Properties: map[string]string{"powered": "false", "rotation": "11"}}, {Id: 8935, Properties: map[string]string{"powered": "false", "rotation": "12"}}, {Id: 8936, Properties: map[string]string{"powered": "false", "rotation": "13"}}, {Id: 8937, Properties: map[string]string{"powered": "false", "rotation": "14"}}, {Id: 8938, Properties: map[string]string{"powered": "false", "rotation": "15"}}}}, "minecraft:zombie_wall_head": {States: []{{Id: 8939, Properties: map[string]string{"facing": "north", "powered": "true"}}, {Id: 8940, Properties: map[string]string{"facing": "north", "powered": "false"}}, {Id: 8941, Properties: map[string]string{"facing": "south", "powered": "true"}}, {Id: 8942, Properties: map[string]string{"facing": "south", "powered": "false"}}, {Id: 8943, Properties: map[string]string{"facing": "west", "powered": "true"}}, {Id: 8944, Properties: map[string]string{"facing": "west", "powered": "false"}}, {Id: 8945, Properties: map[string]string{"facing": "east", "powered": "true"}}, {Id: 8946, Properties: map[string]string{"facing": "east", "powered": "false"}}}}} diff --git a/server/world/chunk/section/section.go b/server/world/chunk/section/section.go index dcd362c..fd5078f 100644 --- a/server/world/chunk/section/section.go +++ b/server/world/chunk/section/section.go @@ -18,6 +18,8 @@ func New(y int8, blockPalette []Block, blockStates []int64, biomePalette []strin blockLight: blocklight, blockBitsPerEntry: blockBitsPerEntry(len(blockPalette)), biomeBitsPerEntry: biomeBitsPerEntry(len(biomePalette)), + + stateCache: make(map[Block]int64), } s.biomes.Palette = biomePalette s.biomes.Data = biomesData @@ -37,6 +39,9 @@ type Section struct { Palette []string `nbt:"palette"` } `nbt:"biomes"` + // stateCache caches states for blocks with no properties + stateCache map[Block]int64 + blockBitsPerEntry int biomeBitsPerEntry int } @@ -110,31 +115,41 @@ func (sec *Section) setBlockState(x, y, z byte, state int64) error { // Sets the block at the position and returns its new state (index in the block palette). Resizes the palette if needed // X, Y, Z should be relative to the chunk section (AKA x&0x0f, y&0x0f, z&0x0f) func (sec *Section) SetBlock(x, y, z byte, b Block) (state int64) { - state, ok := sec.index(b) - if !ok { - oldBPE := sec.blockBitsPerEntry - sec.add(b) - state = int64(len(sec.blockPalette) - 1) - if oldBPE != sec.blockBitsPerEntry { - data := make([]int64, 4096/(64/sec.blockBitsPerEntry)) - newSec := Section{ - y: sec.y, - blockLight: sec.blockLight, - skyLight: sec.skyLight, - blockPalette: sec.blockPalette, - blockStates: data, - biomes: sec.biomes, - blockBitsPerEntry: sec.blockBitsPerEntry, - } - for x := byte(0); x < 16; x++ { - for y := byte(0); y < 16; y++ { - for z := byte(0); z < 16; z++ { - newSec.setBlockState(x, y, z, sec.blockState(x, y, z)) + var skip bool + if s, ok := sec.stateCache[b]; ok { + state = s + skip = true + } + if !skip { + var ok bool + state, ok = sec.index(b) + if !ok { + oldBPE := sec.blockBitsPerEntry + sec.add(b) + state = int64(len(sec.blockPalette) - 1) + if oldBPE != sec.blockBitsPerEntry { + data := make([]int64, 4096/(64/sec.blockBitsPerEntry)) + newSec := Section{ + y: sec.y, + blockLight: sec.blockLight, + skyLight: sec.skyLight, + blockPalette: sec.blockPalette, + blockStates: data, + biomes: sec.biomes, + blockBitsPerEntry: sec.blockBitsPerEntry, + stateCache: make(map[Block]int64), + } + for x := byte(0); x < 16; x++ { + for y := byte(0); y < 16; y++ { + for z := byte(0); z < 16; z++ { + newSec.setBlockState(x, y, z, sec.blockState(x, y, z)) + } } } + *sec = newSec } - *sec = newSec } + sec.stateCache[b] = state } long, off := sec.offset(int(x), int(y), int(z)) diff --git a/server/world/level/level.go b/server/world/level/level.go index 0a123f8..55f3e68 100644 --- a/server/world/level/level.go +++ b/server/world/level/level.go @@ -13,6 +13,8 @@ import ( "time" "github.com/zeppelinmc/zeppelin/nbt" + "github.com/zeppelinmc/zeppelin/properties" + "github.com/zeppelinmc/zeppelin/server/world/level/region" "github.com/zeppelinmc/zeppelin/server/world/level/seed" ) @@ -38,6 +40,10 @@ func (stamp UnixMilliTimestamp) Time() time.Time { return time.UnixMilli(int64(stamp)) } +func Now() UnixMilliTimestamp { + return UnixMilliTimestamp(time.Now().UnixMilli()) +} + type DimensionGenerationSettings struct { Generator struct { BiomeSource struct { @@ -55,6 +61,7 @@ type Level struct { BorderCenterX float64 BorderCenterZ float64 BorderDamagePerBlock float64 + BorderSize float64 BorderSafeZone float64 BorderSizeLerpTarget float64 BorderSizeLerpTime int64 @@ -123,7 +130,7 @@ type Level struct { } // worldPath is the base path of the world -func LoadWorldLevel(worldPath string) (Level, error) { +func Open(worldPath string) (Level, error) { var level Level file, err := os.Open(worldPath + "/level.dat") if err != nil { @@ -144,3 +151,90 @@ func LoadWorldLevel(worldPath string) (Level, error) { return level, err } + +func Create(l Level) error { + file, err := os.Create(l.basePath + "/level.dat") + if err != nil { + return err + } + w := gzip.NewWriter(file) + + defer w.Close() + defer file.Close() + + return nbt.NewEncoder(w).Encode("", l) +} + +func New(gen region.Generator, props properties.ServerProperties, worldPath string) Level { + var l Level + l.Data.SpawnX, l.Data.SpawnY, l.Data.SpawnZ = gen.GenerateWorldSpawn() + l.Data.AllowCommands = true + l.Data.BorderDamagePerBlock = 0.2 + l.Data.BorderSize = 60000000 + l.Data.BorderSafeZone = 5 + l.Data.BorderSizeLerpTarget = 60000000 + l.Data.BorderWarningBlocks = 5 + l.Data.BorderWarningTime = 15 + l.Data.DataPacks.Enabled = []string{"vanilla"} + l.Data.Difficulty = diffstr(props.Difficulty) + l.Data.WorldGenSettings.Seed = seed.New(props.LevelSeed) + l.Data.WorldGenSettings.GenerateFeatures = props.GenerateStructures + l.Data.GameType = gmstr(props.Gamemode) + l.Data.Hardcore = props.Hardcore + l.Data.Initialized = true + l.Data.LastPlayed = Now() + l.Data.LevelName = props.LevelName + l.Data.VersionInt = 19133 + + l.Data.Version.Id = 3953 + l.Data.Version.Name = "1.21" + l.Data.Version.Series = "main" + l.Data.ServerBrands = []string{"Zeppelin"} + + return l +} + +func Refresh(props properties.ServerProperties, l *Level) { + l.Data.AllowCommands = true + l.Data.DataPacks.Enabled = []string{"vanilla"} + l.Data.Difficulty = diffstr(props.Difficulty) + l.Data.WorldGenSettings.GenerateFeatures = props.GenerateStructures + l.Data.GameType = gmstr(props.Gamemode) + l.Data.Hardcore = props.Hardcore + l.Data.Initialized = true + l.Data.LastPlayed = Now() + l.Data.LevelName = props.LevelName + l.Data.VersionInt = 19133 + + l.Data.Version.Id = 3953 + l.Data.Version.Name = "1.21" + l.Data.Version.Series = "main" + l.Data.ServerBrands = []string{"Zeppelin"} +} + +func diffstr(str string) byte { + switch str { + case "peaceful": + return 0 + case "normal": + return 2 + case "hard": + return 3 + default: + return 1 + } +} + +func gmstr(str string) GameMode { + switch str { + case "creative": + return GameModeCreative + case "adventure": + return GameModeAdventure + case "spectator": + return GameModeSpectator + + default: + return GameModeSurvival + } +} diff --git a/server/world/level/region/region_dec.go b/server/world/level/region/region_dec.go index 343d032..f940660 100644 --- a/server/world/level/region/region_dec.go +++ b/server/world/level/region/region_dec.go @@ -133,7 +133,7 @@ func (r *File) GetChunk(x, z int32) (*chunk.Chunk, error) { case CompressionNone: data = chunkBuffer.Bytes() case CompressionLZ4: - data, err = compress.DecompressLZ4(rawReader) + data, err = compress.DecompressLZ4(chunkBuffer.Bytes()) if err != nil { return nil, err } diff --git a/server/world/level/seed/seed.go b/server/world/level/seed/seed.go index 49e3a90..600e2ff 100644 --- a/server/world/level/seed/seed.go +++ b/server/world/level/seed/seed.go @@ -27,6 +27,9 @@ func New(str string) Seed { // HashCode is an implementation of Java's hashCode function. It used to turn any string seed into a long seed func hashCode(s string) int64 { + if len(s) == 0 { + return 0 + } var result int64 n := len(s) diff --git a/server/world/terrain/superflat.go b/server/world/terrain/superflat.go index 630b682..cbb447e 100644 --- a/server/world/terrain/superflat.go +++ b/server/world/terrain/superflat.go @@ -6,7 +6,7 @@ import ( "github.com/zeppelinmc/zeppelin/server/world/chunk" ) -// A superflat chunk generator. A superflat world is just 4 layers. One bedrock, two dirt, and one grass block, so it is very easy to implement +// superflat chunk generator type SuperflatTerrain struct { } @@ -26,5 +26,5 @@ func (SuperflatTerrain) NewChunk(cx, cz int32) chunk.Chunk { } func (SuperflatTerrain) GenerateWorldSpawn() (x, y, z int32) { - return rand.Int31n(160), 4, rand.Int31n(160) + return rand.Int31n(160), 5, rand.Int31n(160) } diff --git a/server/world/terrain/terrain.go b/server/world/terrain/terrain.go index 8ae6c19..1f08b3d 100644 --- a/server/world/terrain/terrain.go +++ b/server/world/terrain/terrain.go @@ -1,6 +1,7 @@ package terrain import ( + "math" "math/rand" "github.com/aquilax/go-perlin" @@ -15,13 +16,13 @@ type TerrainGenerator struct { func (g TerrainGenerator) GenerateWorldSpawn() (x, y, z int32) { x, z = rand.Int31n(160), rand.Int31n(160) - y = g.y(x, z) + y = int32(math.Ceil(g.y(x, z))) return } -func (g TerrainGenerator) y(x, z int32) int32 { - return int32(g.noise.Noise2D(float64(x)/30, float64(z)/30)*10) + 80 +func (g TerrainGenerator) y(x, z int32) float64 { + return g.noise.Noise2D(float64(x)/30, float64(z)/30)*10 + 80 } func (g TerrainGenerator) NewChunk(cx, cz int32) chunk.Chunk { @@ -35,7 +36,7 @@ func (g TerrainGenerator) NewChunk(cx, cz int32) chunk.Chunk { for z := int32(0); z < 16; z++ { absX, absZ := (cx<<4)+x, (cz<<4)+z - y := g.y(absX, absZ) + y := int32(g.y(absX, absZ)) if y <= -64 { y = -64 diff --git a/server/world/world.go b/server/world/world.go index 16254af..789b7d7 100644 --- a/server/world/world.go +++ b/server/world/world.go @@ -7,9 +7,11 @@ import ( "github.com/zeppelinmc/zeppelin/atomic" "github.com/zeppelinmc/zeppelin/log" + "github.com/zeppelinmc/zeppelin/properties" "github.com/zeppelinmc/zeppelin/server/session" "github.com/zeppelinmc/zeppelin/server/world/dimension" "github.com/zeppelinmc/zeppelin/server/world/level" + "github.com/zeppelinmc/zeppelin/server/world/level/region" "github.com/zeppelinmc/zeppelin/server/world/terrain" ) @@ -20,21 +22,27 @@ type World struct { levelPrepared bool + props properties.ServerProperties + lock *os.File path string worldAge, dayTime atomic.AtomicValue[int64] } -func NewWorld(path string) (*World, error) { +func NewWorld(props properties.ServerProperties) (*World, error) { var err error w := &World{ - path: path, + path: props.LevelName, Broadcast: session.NewBroadcast(), + props: props, } - w.Level, err = level.LoadWorldLevel(path) + + owgen := terrain.NewTerrainGenerator(int64(w.Data.WorldGenSettings.Seed)) + + w.Level, err = level.Open(props.LevelName) if err != nil { - w.prepareLevel() + w.prepareLevel(owgen, props) } if w.obtainLock() != nil { @@ -45,19 +53,24 @@ func NewWorld(path string) (*World, error) { w.dayTime = atomic.Value(w.Level.Data.DayTime) w.dimensions = map[string]*dimension.Dimension{ "minecraft:overworld": dimension.New( - path+"/region", + props.LevelName+"/region", "minecraft:overworld", "minecraft:overworld", w.Broadcast, - terrain.NewTerrainGenerator(int64(w.Data.WorldGenSettings.Seed)), + owgen, true, ), } + level.Refresh(w.props, &w.Level) + return w, nil } -func (w *World) prepareLevel() { +// prepareLevel creates a new level.dat file and other world folders +func (w *World) prepareLevel(owgen region.Generator, props properties.ServerProperties) { + w.Level = level.New(owgen, props, w.path) + os.MkdirAll(w.path+"/playerdata", 0755) os.Mkdir(w.path+"/region", 0755) @@ -92,6 +105,8 @@ func (w *World) Save() { dim.Save() log.Infoln("Saved dimension", dim.Name()) } + + level.Create(w.Level) w.lock.Close() } diff --git a/term.go b/term.go index b15b29d..edcb883 100644 --- a/term.go +++ b/term.go @@ -17,10 +17,8 @@ func notRawTerminal(srv *server.Server) { interrupt := make(chan os.Signal, 1) signal.Notify(interrupt, os.Interrupt) -cmdl: - for { - select { - case <-interrupt: + go func() { + for range interrupt { newText := "\r> stop" fmt.Print(newText) l := len(line) + 3 // the addtitional 3 chars are "\r> " @@ -29,15 +27,17 @@ cmdl: } fmt.Println() srv.Stop() - break cmdl - default: - if !scanner.Scan() { - break - } - line = scanner.Text() - srv.CommandManager.Call(line, srv.Console) - fmt.Print("\r> ") + os.Stdin.Close() + } + }() + + for { + if !scanner.Scan() { + break } + line = scanner.Text() + srv.CommandManager.Call(line, srv.Console) + fmt.Print("\r> ") } }